因为facebook尚未将某些功能迁移到GRAPH,我仍然需要通过REST进行一些调用。不幸的是,似乎没有办法为今天接受我的应用程序的用户获取REST会话密钥。
有没有办法从Facebook请求REST会话密钥?我通过GRAPH几乎完成了所有的调用,但是在他们完成迁移功能之前,我没有使用过它......
提前致谢!
DW
答案 0 :(得分:2)
所有需要会话密钥的REST API方法都可以使用访问令牌。
我刚刚测试过您之前提到过的links.preview方法:
https://api.facebook.com/method/links.preview?url=http://www.google.com&format=json&access_token=<REMOVED>
回应是:
{
"href":"http:\/\/www.google.com\/",
"name":"Google",
"caption":"www.google.com",
"description":"Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for.",
"media":[
{
"type":"image",
"src":"http:\/\/www.google.com\/intl\/en_ALL\/images\/srpr\/logo1w.png"
},
{
"type":"image",
"src":"http:\/\/www.google.com\/images\/google_favicon_128.png"
}
]
}