0

Javascript SDK 経由で Payments API を使用しています。ユーザーが支払いを完了した後、FB 内のサンキュー ページにリダイレクトしたいと考えています。redirect_uri が FB アプリのセットアップで定義されたサイトに限定されていることを理解しています。では、これを行うにはどうすればよいですか?それとも、FB はポップアップ ダイアログを最後のお礼ページと見なし、それがすべて許可されているのでしょうか?

   function buy() {
     var credits= 2;
     FB.ui({
         method: 'pay',
         credits_purchase: false,
         order_info: credits,
         // FB says it will only redirect to the URL registered for the app.
         // I'll try to fudge  by adding a parameter:
         redirect_uri:'https://apps.facebook.com/MYAPP/index.php?thankyou=1',
         dev_purchase_params: {
             oscif: true
          }
       },
       function(response) {
         div = document.getElementById('fb-response');
         div.innerHTML = JSON.stringify(response);
     });
   }
4

1 に答える 1