0

I created a FB App programatically using this:

https://www.facebook.com/connect/create_app.php?api_key=APP_ID&name=AP_NAME

now I need to get the APP ACCESS TOKEN that can be retrieved using the following code:

$APPLICATION_ID = "APP_ID";
$APPLICATION_SECRET = "APP_SECRET";

$token_url =    "https://graph.facebook.com/oauth/access_token?" .
                "client_id=" . $APPLICATION_ID .
                "&client_secret=" . $APPLICATION_SECRET .
                "&grant_type=client_credentials";
$app_token = file_get_contents($token_url);

for that, I obviously need to have first the APP_SECRET...

So is there any workaround to get the APP_SECRET of the newly created app?

4

2 に答える 2

2

AppSecret は「セキュリティ目的」で使用されるため、その方法で取得しないでください。

oauthAppsecret は、ハンドシェイク メカニズムで定義されているように、リクエストを暗号化および復号化するために使用されます。

getit に「API 経由のリアルタイム メカニズム」を持たせることは想定されていません。

他の観点から secret_key を探してみてください。これは、誰もネットワーク上で持つべきではない種類の情報です...

希望はあなたのビジョン/ニーズを助けます

于 2012-08-27T16:26:35.437 に答える
1

Facebook Developersにアクセスして、両方のキーをコピーする必要があります。ここに画像の説明を入力

于 2012-08-27T16:10:43.860 に答える