0

当用户接受 fb 应用程序请求或需要将用户重定向到自定义 url 时,我需要传递附加参数来重定向 url。我该怎么做?...请看下面的代码。

   $('#sendRequest').click(function() {
          FB.ui(
            {
              method  : 'apprequests',
              message : $(this).attr('data-message')

                    },
            function (response) {
              // If response is null the user canceled the dialog
              if (response != null) {
                 logResponse(response);
              }
            }
          );
        });
4

2 回答 2

1

我在发送请求时使用“data”参数发送信息,并在另一端使用“request id”访问它。

 $('#sendRequest').click(function() {


          FB.ui(
            {
              method  : 'apprequests',
              message : $(this).attr('data-message'),
              data: sessionId,
              max_recipients:1

                    },
            function (response) {
              // If response is null the user canceled the dialog
              if (response != null) {
                 logResponse(response);
              }
            }
          );
        });
于 2012-09-07T05:25:21.643 回答
0

您可以在显示的代码中添加任何内容。

如果您需要将任何数据与请求相结合,则必须将此数据保存到您自己的数据库中,以便在收到用户接受请求时发送给您的请求 ID 时再次查找。

于 2012-08-20T12:35:06.923 回答