2

有没有在 Google App Engine 上使用 facebook 积分的示例?

我找到了这篇博文,但它并不完整 http://blog.suinova.com/2011/01/integrating-facebook-credits-api-into.html

我得到了在 App Engine 上运行的示例 runwithfriends示例,尝试使用 Credits 扩展它,到目前为止还没有运气。

还搜索了FB开发者论坛,一无所获。

您可以指出我的任何资源吗?

什么不工作:
1)当我点击“用 Facebook 支付”按钮时,我得到一个“应用程序错误”,没有任何错误代码。
-检查了 javascript 控制台
-检查了 fb 应用程序设置
-在本地服务器和生产服务器上尝试过

2)callback.py 不完整,因为我无法解析签名的请求(py 中没有可供我学习的代码)

3) 我基本上所做的是将 Suinova Designs 的代码(上面的链接)添加到现有的 Run With Friends 应用程序代码中。结果并没有如预期的那样。

到目前为止我的代码:

//payment_page.html
<html>
<table>
<tr><th>Name</th><th>Price</th><th> </th></tr>
<tr><td>Something to buy</td><td>10 FC</td><td><a href="" onclick="return buyit();">
<img src="http://www.facebook.com/connect/button.php?app_id=215638625132268&feature=payments&type=light_l" />
</a></td></tr>
</table>

// javascript

function buyit(){
    FB.ui({
        method:'pay',
    purchase_type:'item',
    order_info:{
        item_id:'myitem',
                title:'Something to buy',
            price:2,
            description:'Whatever',
            image_url:'http://www.facebook.com/images/gifts/21.png',
             product_url:'http://www.facebook.com/images/gifts/21.png'}
},

function(resp){
    if(resp.order_id) window.top.location='http://apps.facebook.com/runwithfriends trial'; else alert(resp.error_message);
});
return false;

}

//callback.py
class FacebookPaymentRequest(webapp.RequestHandler):
def post(self):
    signed_request = parse_signed_request(self.request.get('signed_request'),conf.FACEBOOK_APP_SECRET)
    payload = signed_request['credits'] #credits:{buyer:int,order_id:int,order_info:{},receiver:int}
    order_id = payload['order_id']
    method = web.request.get('method')
    return_data = {'method':method}
    if method == 'payments_get_items':
        order_info = payload['order_info']  #order_info:{item_id:'',title:'',description:'',price:0,image_url:'',product_url:''}
        item = simplejson.loads(order_info) #needs to convert JSON string to dict
        #check item,price,etc and reply
        return_data['content'] = [item]
    elif method == 'payments_status_update':
        status = payload['status']
        return_data['content'] = {'status':'settled','order_id':order_id}
        if status == 'placed':
            #just return settled status to Facebook, this may be called twice
            order_details = simplejson.loads(payload['order_details'])
            #check and log here
        elif status == 'settled':
            order_details = simplejson.loads(payload['order_details'])
            #order_details:{order_id:0,buyer:0,app:0,receiver:0,amount:0,update_time:0,time_placed:0,data:'',items:[{}],status:'placed'}
            buyer = order_details['buyer']
            item = order_details['items'][0]
            #now save this transaction into our database
        else:
            #may be refunded, canceled, log the activity here
            return_data['content']['status'] = status
    self.response.out.write(simplejson.dumps(return_data))
4

1 回答 1

0

你的 python 代码看起来很正常,所以我猜你只是在授权方面遇到了问题。根据您的授权方式(一个比信用系统复杂得多的过程),您可能会收到一个仅部分授权的签名请求......这意味着您仅被授权访问 facebook 的某些部分,但通常不会授权访问活动/登录用户(即我)。

您可以通过确定您的 signed_request 是否包含完整的 80 多个字符(而不是大约 40 个字符)来验证这一点。通常,我尝试通过解密配置文件(signed_request)来进行身份验证,如果失败,那么我会尝试使用以前存储的 cookie,如果失败,我会尝试重新登录用户。我通过在调用周围放置 try/except 来确定失败,以通过 GraphAPI 获取“我”对象。

于 2011-05-07T15:56:34.910 回答