Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kclay/as3-googleplus
Google Plus api for As3
https://github.com/kclay/as3-googleplus
Last synced: about 2 months ago
JSON representation
Google Plus api for As3
- Host: GitHub
- URL: https://github.com/kclay/as3-googleplus
- Owner: kclay
- Created: 2011-09-16T15:17:45.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-10-07T15:27:46.000Z (over 13 years ago)
- Last Synced: 2024-08-04T05:04:53.500Z (5 months ago)
- Language: ActionScript
- Homepage:
- Size: 347 KB
- Stars: 13
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- awesome-actionscript-sorted - as3-googleplus - Google Plus api for As3 (API / Other API)
README
var plus:GooglePlusService=new GooglePlusService();
plus.apiKey=API_KEY;
var id:String="YOUR_ID"
var request:EndpointRequest=new ActivitesEndpoint(plus).list(id,"public");
request.addResponder(new EndpointResponder(function(value:Object):void
{
trace("ActivityFeed ", value);
}));
request.execute();
new EndpointRequest("/people/"+id+"/activities/public",plus).execute();