1

因为 facebook 还没有将某些功能迁移到 GRAPH,所以我仍然需要通过 REST 进行一些调用。不幸的是,似乎没有办法为今天接受我的应用程序的用户获取 REST 会话密钥。

有什么方法可以从 facebook 请求 REST 会话密钥?我几乎所有的电话都是通过 GRAPH 进行的,但是在他们完成迁移功能之前,我一直没有一个....

提前致谢!

德国之声

4

1 回答 1

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"
      }
   ]
}
于 2013-03-02T00:23:04.663 回答