最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

facebook - JavaScript SDK:: FB.ui() and Popup block on mobile Safari of iOS and Android browser - Stack Overflow

programmeradmin3浏览0评论

Now I'm implementing Facebook credit function with JavaScript SDK. I have been using "FB.ui({method: 'pay', ....}, callback)" and now it works fine.

When I use this FB.ui function with method: 'pay' on mobile site like iPhone or Android, it try to open a another popup window for payment dialog.

But as everybody knows, iPhone or Android browser blocks popup window in default, so we must turn off popup block in settings if we want to work this FB.ui pay method.

Are there any ways not to open another popup window for the payment dialog?

Now I'm implementing Facebook credit function with JavaScript SDK. I have been using "FB.ui({method: 'pay', ....}, callback)" and now it works fine.

When I use this FB.ui function with method: 'pay' on mobile site like iPhone or Android, it try to open a another popup window for payment dialog.

But as everybody knows, iPhone or Android browser blocks popup window in default, so we must turn off popup block in settings if we want to work this FB.ui pay method.

Are there any ways not to open another popup window for the payment dialog?

Share Improve this question asked Oct 28, 2011 at 12:06 小林 学小林 学 111 silver badge3 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

the solution is put the code that call FB.ui in the onclick attribute of the button. like the facebook web app hackbook does:

http://www.facebookmobileweb./hackbook/ (open this in a popup window blocked browser, and click the "Prompt to Pay" in the Credits page)

here is the html code of the "Prompt to Pay" button:

<div id="publish_button" class="button" onclick="sendPay()">Prompt to Pay</div>

and here is the reason why browser doesnt block this kind of popup windows:

Prevent pop-ups from being blocked

发布评论

评论列表(0)

  1. 暂无评论