Browsing projects by Tag(s)

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

Showing page 2 of 18

a Maven repository for Google Data Java Apis.

4.0
   
  0 reviews  |  1 user  |  18,761 lines of code  |  0 current contributors  |  Analyzed 10 days ago
 
 

什么是jQuery DoubanjQuery Douban 是一个简化豆瓣 API 调用和 GData JSON 分析的 jQuery 插件,支持 OAuth 授权认证和各种豆瓣数据读写操作的功能。目前支持的API有用户、条目、收藏、评论、广播、日记、推荐和标签 ... [More] API,部分支持同城活动的 API。 什么时候使用jQuery Douban你正好在用 jQuery 你正好想从客户端调用豆瓣 API,而不是从服务器 或者你正在为豆瓣编写 GreaseMonkey 脚本 为什么不直接使用豆瓣API更喜欢 jQuery 风格的代码 可以和有跨域超能力 Javascript 库一起使用,比如 Gears 看到 {"$t":"9787543632608","@name":"isbn13"} 风格的JSON 会头晕 怎样使用jQuery Douban示范添加一条广播先。 jQuery Douban 依赖于 jquery,oauth 和 sha1 三个 js 库,所以先要导入这三个 js 文件。 然后可以添加广播了 // 创建豆瓣服务实例 var service = $.douban({ key: "apiKey", secret: "apiSecret" }); // 登录豆瓣帐户 var login = service.login({ key: "accessKey", secret: "accessSecret"}); if (login) { // 添加一条广播 var miniblog = service.miniblog.add({ content: "添加一条广播" }); // 弹出“添加成功:添加一条广播” alert("添加成功:" + miniblog.content); // 删除一条广播 service.miniblog.remove(miniblog); }哪里可以得到下载/代码/文档jquery-douban 使用 GitHub 来版本管理,Repo URL: http://github.com/wuyuntao/jquery-douban/tree/master你可以用 Git 检出代码 git clone git://github.com/wuyuntao/jquery-douban.git下载 URL: http://github.com/wuyuntao/jquery-douban/zipball/master 文档 URL: http://code.google.com/p/jquery-douban/w/list [Less]

0
 
  0 reviews  |  1 user  |  14,649 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

A client library for the GData APIs written in Ruby.

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

Provisioning API v2.0 Ruby client libraryProvisioning API v2.0 Ruby client library for Google Apps. Based on GData API v2.0. running even behind authenticated http proxies using REXML (no extra module dependency) Just uncompress the downloaded file in your working directory. Ruby language : ... [More] from version 1.8.6 patch-level 111 (just type ruby -v to check your version) On-line documentation Example : #!/usr/bin/ruby require 'gappsprovisioning/provisioningapi' include GAppsProvisioning adminuser = "root@mydomain.com" password = "PaSsWo4d!" myapps = ProvisioningApi.new(adminuser,password) new_user = myapps.create_user("jsmith", "john", "smith", "secret", nil, "2048") puts new_user.family_name puts new_user.given_nameWant to update a user ? user = myapps.retrieve_user('jsmith') user_updated = myapps.update_user(user.username, user.given_name, user.family_name, nil, nil, "true")Want to add an alias or nickname ? new_nickname = myapps.create_nickname("jsmith", "john.smith")NEW!!! Want to manage groups ? (i.e. mailing lists) new_group = myapps.create_group("sales-dep", ['Sales Departement']) new_member = myapps.add_member_to_group("jsmith", "sales-dep") new_owner = myapps.add_owner_to_group("jsmith", "sales-dep") # (ATTENTION: a owner is added only if it's already member of the group!)Want to handle errors ? begin user = myapps.retrieve_user('noone') puts "givenName : "+user.given_name, "familyName : "+user.family_name, "username : "+user.username puts "admin ? : "+user.admin rescue GDataError => e puts "errorcode = "+e.code, "input : "+e.input, "reason : "+e.reason endEmail lists ? (deprecated) new_list = myapps.create_email_list("sales-dep") new_address = myapps.add_address_to_email_list("sales-dep", "bibi@ruby-forge.org") [Less]

0
 
  0 reviews  |  0 users  |  466 lines of code  |  0 current contributors  |  Analyzed about 13 hours ago
 
 

The Google Data APIs (GData) provide a simple protocol for reading and writing data on the web. Each of the following Google services provides a Google data API: Analytics Apps Provisioning Base Blogger Booksearch Calendar Code Search Contacts Documents List Finance Health Maps Picasa Web Albums ... [More] Project Hosting Sites Sidewiki Spreadsheets Translator Toolkit Webmaster Tools YouTube The GData Java Client Library provides a library and source code that make it easy to access data through Google Data APIs. If you have a problem or want a new feature to be included in the GData Java Client Library, please submit an issue. - The Google GData Team [Less]

0
 
  0 reviews  |  0 users  |  122,208 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

This project is a place to report and track issues with the Google Data APIs. Feature requests for new APIs or enhancements to existing Google Data APIs can also be filed here.

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

The as3gdatalib project is an ActionScript 3 interface to access Google Data bypassing crossdomain.xml

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed about 2 years ago
 
 

To be added later...

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 
Compare

I write small stuff and publish it at wtwf.com/scripts

0
 
  0 reviews  |  0 users  |  10,028 lines of code  |  1 current contributor  |  Analyzed 6 days ago
 
 

django-googleThis project currently implements Google Calendar API as django objects. More APIs are likely to appear in the future. AuthenticationThere are two ways to specify authentication info. Using credentialsYou need to pass both email and password to the Account object constructor: ... [More] import google foo = google.models.Account(username = 'example@gmail.com', password = 'plaintext') foo.save()Please note that both full Google addresses and user names are supported. Using auth tokensThis should be the preferred method for hosted services as it does not require you to store the credentials in your database. To obtain a single use token, ask the user to click a link provided by the google_calendar_auth tag: {% load google_tags %} In order to use calendar functions authenticate with Google.The only parameter passed to the tag is the full URI of the view the user will be redirected to once authentication is complete. If access is allowed, request.GET will containt the single use token. In order to use the API you need the exchange the single use token to a session token and pass it to the Account object constructor: import google token = google.utils.upgrade_token(request.GET['token']) foo = google.models.Account(token = token) foo.save() [Less]

0
 
  0 reviews  |  0 users  |  265 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.