Facebook SDK AppRequests Error: OAuthException

Facebook SDK AppRequests Error: OAuthException

我想读取用户的apprequest-id。我已经完成了以下功能:

  1. 获取服务器令牌:

    url = "https://graph.facebook.com/oauth/access_token?client_id=#{app_id}&client_secret=#{secret_key}&grant_type=client_credentials"
    
  2. 然后,我构建了将 user_token 作为 {client_access_token}

  3. 发送到服务器的功能
  4. 所以,我调用这个函数来获取 AppRequest 作为 json

    url = "https://graph.facebook.com/v2.3/#{fb_id}/apprequests/?input_token=#{client_access_token}&access_token=#{server_access_token}"
    

我收到了这个错误:

     {
      "error": {
          "message": "(#15) Requires session when calling from a desktop app",
          "type": "OAuthException",
          "code": 15
         }
     }

起初,我认为 URL 调用或访问令牌有问题,但我已经测试了另一个图 api,例如“/me/friends”和“/me/?fields=installed”具有相同的 input_token 和 access_token。而且,它工作正常。请帮忙。

此问题已通过使用 {client_access_token} as access_token 解决:)

    url = "https://graph.facebook.com/v2.3/#{fb_id}/apprequests/?access_token=#{client_access_token}"