Facebook Oauth2.0 API调用方法

这些天搞了下Facebook API的东东,在官方网站下弄了一些接口,下面简单的把facebook的调用流程以及常用接口书序一下 :-) 
 
当然在使用facebook api之前要有facebook账号以及在facebook上注册一个自己的应用  
1.登录鉴权 
https://graph.facebook.com/oauth/authorize?client_id=8888888888888&redirect_uri=http://www.mywebsite.com&scope=user_about_me,user_activities,user_birthday,user_education_history,user_events,user_groups,user_hometown,user_interests,user_likes,user_location,user_notes,user_online_presence,user_photo_video_tags,user_photos,user_relationships,user_religion_politics,user_status,user_videos,user_website,user_work_history,read_friendlists,read_requests,publish_stream,create_event,rsvp_event,sms,offline_access,friends_about_me,friends_activities,friends_birthday,friends_education_history,friends_events,friends_groups,friends_hometown,friends_interests,friends_likes,friends_location,friends_notes,friends_online_presence,friends_photo_video_tags,friends_photos,friends_relationships,friends_religion_politics,friends_status,friends_videos,friends_website,friends_work_history,read_stream,photo_upload  
字段说明:client_id    :注册应用后即可得到 
      redirect_uri :登录鉴权回调页面 
      scope        :允许用户访问的facebook模块(可在官网上找到齐全的) 
 
登录鉴权之后会回调到你给定的redirect_uri,此时会在你的url后面带上facebook给定的结果参数,其中auth_token是我们下面需要的  
2.获取鉴权标示 
 
https://graph.facebook.com/oauth/access_token?client_id=8888888888888&redirect_uri=http://www.mywebsite.com&client_secret=3dfdsa5425fdsa7554520720df8&code=............ 
 
字段说明:client_id    :注册应用后即可得到
       redirect_uri :回调页面

client_secret:注册应用后即可得到 
      code         :在登录鉴权后返回的auth_token值 
 
这里接口会类似第一步一样返回给我们一个access_token的值,下面我们就需要用这个access_token值做如下操作了(access_token值可存储起来,下次继续使用):  
A. 查询个人信息 
   https://graph.facebook.com/me?access_token=...    备注:“me”可替换成任意用户的ID。 
     可添加fields参数查询相应的个人信息字段,字段集如下: 
     fields=id,name,first_name,middle_name,last_name,gender,locale,languages,link,username,third_party_id,timezone,updated_time,verified,bio,birthday,education,email,hometown,interested_in,location,political,favorite_athletes,favorite_teams,quotes,relationship_status,religion,significant_other,video_upload_limits,website,work,picture    用户自定义图片还可以这样获得: 
   https://graph.facebook.com/me/picture?access_token=...  
B. 查询好友 
   https://graph.facebook.com/me/friends?access_token=...    备注:“me”可替换成任意用户的ID。    或者可以用FQL形式: 
   https://graph.facebook.com/fql?q=SELECT uid2 FROM friend WHERE uid2 = me()  
C. 查询个人动态信息 
   https://graph.facebook.com/me/feed?access_token=...    备注:“me”可替换成任意用户的ID。    或者可以用FQL形式: 
   https://graph.facebook.com/fql?q=SELECT status_id, time, source, message FROM status where uid = me()&access_token=...  
D. 查询用户所有的动态信息(包括自己/朋友/系统)    https://graph.facebook.com/me/home?access_token=...    备注:“me”可替换成任意用户的ID。    或者可以用FQL形式: 
   https://graph.facebook.com/fql?q=SELECT%20status_id,%20time,%20source,%20message%20FROM%20status%20where%20uid%20in%20%28SELECT%20uid1,%20uid2%20FROM%20friend%20WHERE%20uid1%20=%20me%28%29%29&access_token=...  
E. 发表动态 
   需要用到post方式提交,url为:    https://graph.facebook.com/me/feed/    
参数为: 
       message = "add news feed test!!!";        access_token = "...";

以下是一些比较常用的接口提供,facebook官方开发文档地址: 
 
http://developers.facebook.com/docs/reference/api/  
所有facebook提供的接口都可以在官方提供的浏览器工具上测试(或者直接拼装好url在ff上测试即可看到返回效果,在IE上可能会提示下载):  
官方提供的浏览器工具地址:http://developers.facebook.com/tools/explorer  
官方论坛也不错:http://stackoverflow.com  
Twitter API调用例子:http://download.csdn.net/detail/dingding5060/3715744

时间: 2024-12-24 22:46:24

Facebook Oauth2.0 API调用方法的相关文章

saltstack一些常用模块和api调用方法

研究可执行模块的时候,发现很多自带的模块已经很完善,可以帮助我们完成日常工作了,这里写入自己的记录操作: 1.使用salt.clien调用接口操作举例: >>> import salt.client>>> client = salt.client.LocalClient()>>> ret = client.cmd('*','test.ping')>>> ret{'monitor': True} 我们看到调用了LocalClient()

新浪微博Oauth API调用方法

// //  OauthViewController.m //  WPWEIBO // //  Created by apple on 15/5/12. //  Copyright (c) 2015年 apple. All rights reserved. // #import "OauthViewController.h" @interface OauthViewController () <UIWebViewDelegate,NSURLConnectionDataDelega

html5 自带全屏API调用方法

function FullScreen(){ var el = $('html')[0];//要全屏的元素,如果要全页面全屏,建议使用html节点而不是body节点 var isFullscreen=document.fullScreen||document.mozFullScreen||document.webkitIsFullScreen; if(!isFullscreen){//进入全屏,多重短路表达式 (el.requestFullscreen&&el.requestFullscr

salt api调用iptables模块

iptables模块基本函数方法:salt.modules.iptables.append(table=u'filter', chain=None, rule=None, family=u'ipv4')salt.modules.iptables.insert(table=u'filter', chain=None, position=None, rule=None, family=u'ipv4')salt.modules.iptables.delete(table, chain=None, po

OAuth2.0学习(5-4)新浪开放平台-微博API-使用OAuth2.0调用API

使用OAuth2.0调用API 使用OAuth2.0调用API接口有两种方式: 1. 直接使用参数,传递参数名为 access_token URL 1 https://api.weibo.com/2/statuses/public_timeline.json?access_token=abcd 2.在header里传递,形式为在header里添加 Authorization:OAuth2空格abcd,这里的abcd假定为Access Token的值,其它接口参数正常传递即可. 注:所有的微博开放

新浪微博 使用OAuth2.0调用API

# -*- coding: cp936 -*- #python 2.7.10 #xiaodeng #新浪微博 使用OAuth2.0调用API #微博开放接口的调用,都需要获取用户的身份认证.目前微博开放平台用户认证鉴权主要采用OAuth2.0. #使用OAuth2.0调用API接口有2个方式: 1.直接使用参数,传递参数名为access_token URL='https://api.weibo.com/2/statuses/public_timeline.json?access_token=ab

新浪微博API Oauth2.0 认证

原文链接: http://rsj217.diandian.com/post/2013-04-17/40050093587 本意是在注销账号前保留之前的一些数据.决定用python 爬取收藏.可是未登录无法爬取.想要登录有两种办法,伪造浏览器登录.第二就是注册新浪开发者账号,通过Oauth认证调用其API. Oauth 的原理搞了一天才明白.很多网站都提供多语言的Oauth.而 1.0 和 2.0 的最大差别就是多了一个 callback 回调页面.关于这方面的说明很少,搞得我一头雾水折腾了好久.

新浪微博Oauth2.0授权认证及SDK、API的使用(Android)

---------------------------------------------------------------------------------------------- [版权申明:本文系作者原创,转载请注明出处] 文章出处:http://blog.csdn.net/sdksdk0/article/details/51939853作者:朱培      ID:sdksdk0      邮箱: [email protected] -------------------------

快递api网接口快递调用方法

----------------实体类 [DataContract] public class SyncResponseEntity { public SyncResponseEntity() { } /// <summary> /// 需要查询的快递代号 /// </summary> [DataMember(Order = 0, Name = "id")] public string ID { get; set; } /// <summary> /