当用户接受 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);
              }
            }
          );
        });