Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 3

An open protocol to allow API authentication in a simple and standard method from desktop and web applications. Libraries are available for: coldfusion/ csharp/ java/ Obj-c 1.0/ Obj-c 2.0/ perl/ php/ python/ ruby/ pecl/

5.0
 
  0 reviews  |  10 users  |  130,528 lines of code  |  1 current contributor  |  Analyzed about 15 hours ago
 
 
Compare

Dabr is a PHP web interface to the Twitter API for mobile devices. The project is running live at http://dabr.co.uk.

4.0
   
  0 reviews  |  6 users  |  4,305 lines of code  |  2 current contributors  |  Analyzed about 7 hours ago
 
 

multi-platform API generator for webservices. The project aims to be able to generate an API from an existing databases (mysql and more to come !) tu be used in many platforms.

4.0
   
  0 reviews  |  2 users  |  2,756 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

psx

Compare

psx is a framework for developing dynamic websites in php. It is completly object-oriented programmed and modular designed. All classes in the psx library are independent useable because of dependency injection. psx has a focus on social technologies it provide classes to implement oauth, openid ... [More] , opensocial, pubsubhubbub, atom, rss. It seperate strictly between code logic and design. The template-engine is based on pure PHP that means speed and flexibility. By the way psx is of course open source and available under the GPLv3 license. For more informations please visit the website at phpsx.org. [Less]

0
 
  0 reviews  |  1 user  |  45,475 lines of code  |  1 current contributor  |  Analyzed 2 days ago
 
 

API documentationWelcome on the developers' documentation site of mixin.com. Warning: our API is still in beta stage. There is no guaranty about stability of the API for now. We use our API on mixin.com website. Developers' APIThe aim of this documentation is to allow you to develop ... [More] external services like widgets, plugins and more. This is pretty basic for the moment and it will evolve soon, depending on your needs. Overview Authentication: Basic Auth or OAuth Event: http://www.mixin.com/events/json/ Event attendees: http://www.mixin.com/events/{eventid}/attendees/json/ Post comment and medias on events: http://www.mixin.com/events/medias/json/ Timeline http://www.mixin.com/users/{userid}/timeline/json/public/ Semantic sugarIn addition to the API, you can use our semantic resources if you need social information for instance. We plan to document much more our API but you can already use our Friend Of A Friend (FOAF) profiles for this purpose. atom FOAF http://www.mixin.com/users/{userid}/foaf/ hCalendar iCalendar Want more? Let us know!Do not hesitate to ask us at mixin-feedback@googlegroups.com if you need something else in order to interact with our service, we'll be really happy to help you if we can! [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 1 day ago
 
 

This library, though developed by Photobucket developers, is not supported by Photobucket, and is distributed with The MIT License, provided as-is for you to use. Features: Implements the request format as shown in the examples. This is 'fluent' syntax and provides a very readable ... [More] structure. Supports multiple request methods: curl, fopen wrappers and fsockopen, with an extensible model to add new strategies in the future. Curl and fopen wrappers are not supported on every host, so I thought I would provide a few different alternatives. Those users behind proxies may want to create a derivative of one of the strategies provided to request through the proxy. Alternately, a new request strategy using the PEAR HTTP_Request could be built. Supports multiple response formats and parses them to local PHP data structures. Most of the time one would use just the PHP array serialization format, but in the event you really want to use one of the other methods, for whatever reason, those methods are available. Exceptions thrown by the server are turned into Exceptions in the library through the response parsers. Packaged as PEAR packages, but you can extract the .tgz files or check out the code and use without PEAR. This library is coupled with the OAuth library also hosted on this site, which implements a relatively strict version of the OAuth spec. Both packages should be used. PEAR packages will be built from the code in the branches (with corresponding version numbers), if there are changes. For example, PBAPI-0.1 is built from the branches/release-0.1 branch. Trunk code is potentially unstable, but usage of this line could provide valuable feedback. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

Examples of douban-api douban-api运行环境搭建及douban-api安装,请参考douban-api-installation Examples of douban-php-client1,请先申请API_KEY,得到API_KEY和私钥。 2,API认证授权。豆瓣API认证通过以下三个步骤完成: a). 获取未授权的 Request ... [More] Token b). 请求用户授权 Request Token c). 使用授权后的 Request Token 换取 Access Token Zend_Gdata_DouBan的方法programmaticLogin完成了上述过程,详细过程请参考代码。 下列命令生成了一个Zend_Gdata_DouBan对象,并完成了豆瓣API认证过程: $client = new Zend_Gdata_DouBan($api, $secret); $client->programmaticLogin();运行上述代码时,输出如下提示信息: please paste the url in your webbrowser, complete the authorization then come back: http://www.douban.com/service/auth/authorize?oauth_token=5d6f7b964ef6f60c184e72c2ece4e224 将上述url连接拷贝到浏览器,进入到douban api认证授权页面,点击同意,即可完成对本次api访问的授权。 3,正常的douban api操作。完成上述认证过程,即可使用Zend_Gdata_DouBan所提供各种接口进行操作,下面例举了几个简单应用: $peopleEntry = $client->getPeople('ahbei'); assert ($peopleEntry->getId() == 'http://api.douban.com/people/1000001'); assert ($peopleEntry->getLocation()->getText() == '北京'); assert ($peopleEntry->getTitle()->getText() == '阿北'); $peopleFeed = $this->_client->searchPeople('boy', 2, 10); $arr = $peopleFeed->getEntry(); $arr_title = array(); foreach ($arr as $entry) { if ($entry->getTitle()) { $arr_title[$entry->getTitle()->getText()] = 1; } } assert (array_key_exists('cow-boy', $arr_title)); $peopleEntry = $client->getAuthorizedUid(); assert ($peopleEntry->getUid()->getText() == "2463802"); $peopleFeed = $this->_client->GetFriends("2463802"); $arr = $peopleFeed->getEntry(); $uid_arr = array(); foreach ($arr as $entry) { if ($entry->getUid()) { $uid_arr[$entry->getUid()->getText()] = 1; } } assert (array_key_exists("jili8", $uid_arr));更多使用示例,请参考test_douban.php Examples of douban-python-client1,请先申请API_KEY,得到API_KEY和私钥。 2,如下命令完成了API认证过程: client = douban.service.DoubanService(server=SERVER, api_key=API_KEY,secret=SECRET) client.ProgrammaticLogin(token_key=TOKEN_KEY,token_secret=TOKEN_SECRET)运行上述代码时,输出如下提示信息: please paste the url in your webbrowser, complete the authorization then come back: http://www.douban.com/service/auth/authorize?oauth_token=5d6f7b964ef6f60c184e72c2ece4e224 将上述url连接拷贝到浏览器,进入到douban api认证授权页面,点击同意,即可完成对本次api访问的授权。 3,正常的api操作。下面例举了几个简单的应用: people = client.GetPeople('/people/1000001') assert people.uid.text == 'ahbei' assert people.title.text == "阿北" assert people.location.text == "北京" feed = client.SearchPeople("阿北") assert any( e.title.text == "阿北" for e in feed.entry) people = client.GetAuthorizedUID('/people/@me') assert people.uid.text == '2463802'更多示例,请参考test_service.py [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 7 days ago
 
 

Photobucket Actionscript Client Library for use with Photobucket's open REST API. This Library is designed to mirror objects on the Photobucket servers. There are user, album and media objects that can be used to retrieve and manipulate those objects. All the objects are capable of lazy ... [More] loading themselves as new data is requested. Often if you make changes you must call the commit method on these objects to save the changes. This is done to try and limit unnecessary calls to the API. You can get a developer key at: http://developer.photobucket.com/ This library includes a working OAuth Library for signing requests that can be used independent of the Photobucket API. The project depends on the as3crypto library that be found at http://crypto.hurlant.com/ It is reco [Less]

0
 
  0 reviews  |  0 users  |  21,620 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

Perl module for Myspace REST API. This is the module for simplifying developing of myspace applications.

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 9 days ago
 
 

Official PHP client library for douban api. (http://www.douban.com/service/apidoc/) 安装方法see installation 使用示例see examples

0
 
  0 reviews  |  0 users  |  2,670 lines of code  |  0 current contributors  |  Analyzed 1 day ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.