gpt4 book ai didi

asp.net - Facebook Credits 与 C# SDK

转载 作者:行者123 更新时间:2023-12-02 21:26:52 25 4
gpt4 key购买 nike

更新从那以后我就能够让弹出窗口正常工作了。我删除/注释掉了下面使用的不必要的代码。由于某些奇怪的原因,我不得不从 ashx 切换到 aspx。只需确保您在数据库中查找的所有变量都存在:)

我在将 Facebook 积分应用到我的 Facebook 应用程序中时遇到一些问题。我正在使用Facebook C# SDK我确信我的 JavaScript 是干净的。我发现this博客很有帮助,但我在 javascript 回调中从 facebook 收到 AppInvalidDecodedResponse 错误。我最初只是想显示“购买”弹出窗口。这是我在应用程序设置中指定的 ashx 回调:

public void Page_Load(object sender, EventArgs e)
{

string order_id = Request.Form["order_id"];
string method = Request.Form["method"];
string order_info = Request.Form["order_info"];


FacebookBuyItem theItem = new FacebookBuyItem();
theItem.title = "item not found";
theItem.price = "1";
theItem.image_url = Utilities.GlobalSettings["WebDomain"];
theItem.product_url = Utilities.GlobalSettings["WebDomain"];
theItem.description = "item not found";

if (method == "payments_get_items")
{

//order_info = (string)data["order_info"];
//order_info = order_info.Substring(1, (order_info.Length - 2));
using (SqlCommand cmd = new SqlCommand())
{
cmd.Connection = new SqlConnection(Utilities.PluginSettings["SQL Database"]["ConnectionString"]);
cmd.Connection.Open();

cmd.CommandType = System.Data.CommandType.StoredProcedure;
cmd.CommandText = "dbo.GetItem";

cmd.Parameters.Add("@ItemID", System.Data.SqlDbType.Int).Value = int.Parse(order_info);

SqlDataReader dr = cmd.ExecuteReader();

if (dr.Read())
{
theItem.title = dr["ItemName"].ToString();
theItem.price = dr["FacebookCreditCost"].ToString();
theItem.image_url = dr["ThumbPath"].ToString();
theItem.product_url = dr["ThumbPath"].ToString();
theItem.description = dr["Description"].ToString();
}
dr.Close();

cmd.Connection.Close();
}
}
//Utilities.Dump(order_info, order_id, method);
var res = new Dictionary<string, object>();
res["method"] = method;
//res["order_id"] = order_id;
res["content"] = new object[] { theItem };


JavaScriptSerializer jss = new JavaScriptSerializer();
string ob = jss.Serialize(res);
//ob = ob.Replace("#$", @"\/");
Response.ContentType = "application/json";
Response.Write(ob);
Response.End();
}

最佳答案

我是 Facebook 的一名工程师,希望能为您提供帮助。解码响应无效意味着回调在 payment_get_items 调用期间未向 Facebook 提供必要且格式正确的商品信息。好消息是,Facebook 正在从您的回调中获取某些信息,但不是正确的某些信息。我对 C# 没有经验,但首先,我会尝试像下面那样对您的商品名称、价格等进行硬编码,并检查它是否按预期工作。

        theItem.title = 'BFF Locket';
theItem.price = 1;
theItem.image_url = 'http://www.facebook.com/images/gifts/21.png';
theItem.product_url = 'http://www.facebook.com/images/gifts/21.png';
theItem.description = 'This is a BFF Locket...';

如果您仍然遇到问题,请告诉我,我可以进一步调查此问题。

关于asp.net - Facebook Credits 与 C# SDK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6962995/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com