Projects tagged ‘blogblogs’


Jump to tag:

Projects tagged ‘blogblogs’

Filtered by Project Tags blogblogs

Refine results Project Tags blog (1) apiblogblogs (1) php (1) curl (1) plugin (1) wordpress (1) ajax (1) information (1) api (1)

[2 total ]

1 Users
 

BlogBlogs is the biggest brazilian index for blogs. This plugin is used to grab information about your site's visitors. For every comment on your site the plugin checks if the user is registered at ... [More] BlogBlogs and grabs all his/her info. This data is displayed in an information box inside the comment, or nothing is displayed if no data is found. The script has two modes, PHP and AJAX. In PHP mode it grabs data before displaying the site content and in AJAX mode all is done in parallel. The script also implements cache, avoiding excessive queries to the BlogBlogs site. Further information: http://www.rafaeldohms.com.br/2007/07/03/novo-plugin-blogblog-user-info/pt/ Bug Reports: http://www.rafaeldohms.com.br/dmsdev/index.php?go=projView&prj=69 [Less]
Created over 2 years ago.

0 Users

This Class is a easy-to-use library for access all the BlogBlogs API. Version: pre-alphaExample$foo = new BlogBlogs("your-username","your-api-key"); $xml_return = $foo->getFavorites(); ... [More] $xml_return = $foo->getUser("username"); $xml_return = $foo->getBlog("http://link-of-blog.com/");See your API Access KeyIn this page: Blogblogs Key you can see your API Key. PHP - Javascript Example$foo = new BlogBlogs("your-username","your-api-key"); $xml_return = $foo->getUser($_GET['username']); $xml = new SimpleXMLElement( $xml_return ); switch($_GET['option']): case "fullname": return $xml->document->result->fullname; break; case "blogs": return $xml->document->result->blogs; break; case "page": return $xml->document->result->profilepage; break; endswitch; Calling with jQuery(get) $.get("example-js.php", { username: "user-you-want" option: "option-you-want" }, function(data){ alert("Data Loaded: " + data); });Get jQuery here AuthorCreated by: @nops [Less]
Created 7 months ago.