adID
私が所属する Facebook インスタント ゲームで広告を表示する必要があります。私が所属する会社は、ゲーム サーバーとの通信を介してオーディションに合格することを望んでいます。Facebook リンク ( https://developers.facebook.com/docs/games/instant-games/guides/bots-and-server-communication#backend ) から、ゲームは次のようにしか動作しません:
FBInstant.player.getSignedPlayerInfoAsync('custom_payload_supplied_with_request')
.then(function (result) {
// The verification of the ID and signature should happen on server side.
SendToMyServer(
result.getPlayerID(), // same value as FBInstant.player.getID()
result.getSignature(),
... //any additional parameters required for your server call
);
});