0

以前はアプリケーション アクセス トークンが機能していましたが、重大な変更の後、アプリケーションが機能しなくなりました。私が得ているエラーは

(#200) Must have a valid access_token to access this endpoint

アクセストークンに以下のコードを使用しました

var fb = new FacebookClient();
dynamic result = fb.Get("oauth/access_token", new {
    client_id = XXXX,
    client_secret = XXXXX,
    grant_type = "client_credentials",
    scope = "publish_stream"
});

この問題を解決するにはどうすればよいですか?

4

2 に答える 2

0
tried using FacebookAppId  but same error- 

dynamic result = fb.Get("oauth/access_token", new
                    {
                        client_id = ApplicationId,
                        client_secret = ApplicationSecret,
                        grant_type = "client_credentials",
                        scope = "publish_stream",
                        FacebookAppID = "xxxxxxx"

                    });
于 2013-07-18T17:07:42.803 に答える
0

確かではありませんが、多分それはあなたのために働くでしょう.

info.plist に FB APPid を追加

FacebookAppID --Your FB id

幸運を

于 2013-07-18T12:57:30.940 に答える