Answer by Ifan Iqbal for Obtain a Blogger's blog ID from its friendly URL...
Today, the newest blogger API is in version 3.0. With that new API, we can get blog ID with resource type getByUrl. This is full example using my blog and my...
View ArticleAnswer by Mike P for Obtain a Blogger's blog ID from its friendly URL without...
Seems you can use the blog's url to get the comments as well, try;http://someusername.blogspot.com/feeds/comments/defaultAnd you can get all the comments for a given post in the similar way, namely...
View ArticleAnswer by Jamal Fanaian for Obtain a Blogger's blog ID from its friendly URL...
(I had posted an original answer, but modified it to use Zend_Gdata instead).Here is a method of getting the blog ID. <?php$user = 'username';$pass = 'password';// I have to admit, I would normally...
View ArticleAnswer by KingRadical for Obtain a Blogger's blog ID from its friendly URL...
$blog = "sleeptalkinman.blogger.com";$username = split('\.', $blog)[0];should give you what you're after, as long as you have the URL like above.
View ArticleObtain a Blogger's blog ID from its friendly URL without screen scraping
I'm using the Blogger API for PHP. I want to obtain the blog ID from just the site's name.For example, http://sleeptalkinman.blogspot.com/ has a blog ID of 3117168333067506122. This is possible as the...
View Article