0

由于 Facebook 再次迫使我们改变方式,我们需要在我们的应用程序中引入他们的“本地货币”作为支付选项。

但是,我发现文档难以理解,并且迫切需要一些示例代码。如果有人知道一些示例代码,将不胜感激。

4

2 回答 2

0

试试这个,虽然它是在 ASP.NET 中,但你可以很容易地在 PHP 中转换。

http://indiandotnet.wordpress.com/2013/09/11/step-by-step-example-to-implement-facebook-local-currency-payments-latest-september-2013-changes-with-javascript-sdk-在-asp-net/

于 2013-09-11T13:27:04.127 回答
0

我认为如果您是应用程序的开发者/所有者会出现此错误,请尝试使用其他帐户

我自己刚刚解决了这个问题,还没有完成回调,然后我会编辑我的答案。希望这对某人有用。首先制作一个图形对象

<head prefix=
"og: http://ogp.me/ns# 
fb: http://ogp.me/ns/fb# 
product: http://ogp.me/ns/product#">
<meta property="og:type"                   content="og:product" />
<meta property="og:title"                  content="Friend Smash Coin" />
<meta property="og:plural_title"           content="Friend Smash Coins" />
<meta property="og:image"                  content="http://www.friendsmash.com/images/coin_600.png" />
<meta property="og:description"            content="Friend Smash Coins to purchase upgrades and items!" />
<meta property="og:url"                    content="https://www.yourdomain.com/test.html" />
<meta property="product:price:amount"      content="0.30"/>
<meta property="product:price:currency"    content="USD"/>
<meta property="product:price:amount"      content="0.20"/>
<meta property="product:price:currency"    content="GBP"/>
</head>

将此保存为 html 文件并将其上传到您的服务器,比如说 yourdomain.com/test.html

访问此页面https://developers.facebook.com/tools/debug并在此处输入您的新网址(yourdomain.com/test.html)

将下面的产品 url 更改为您的域 (yourdomain.com/test.html)

<h2>Purchase a product:</h2>
<button id="pay">Buy Product</button>
<div class="returndata" id="output"></div>


<div id="fb-root"></div>
<script type="text/javascript">
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'APPID',
      status     : true,
      cookie     : true,
      xfbml      : true
    });

    function buy() {
      var obj = {
        method: 'pay',
        action: 'purchaseitem',
        product: 'http://yourdomain.com/test.html'
      };

      FB.ui(obj, function(data) {
          console.log(data);
        });
    }

    document.getElementById('pay').onclick = function() {buy()};
  };

  // Load the SDK Asynchronously
  (function(d){
    var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
    if (d.getElementById(id)) { return; }
    js = d.createElement('script'); js.id = id; js.async = true;
    js.src = "//connect.facebook.net/en_US/all.js";
    ref.parentNode.insertBefore(js, ref);
  }(document));
</script>
于 2013-06-13T08:12:02.503 回答