UPDATE I have since been able to get the popup working. I removed/commented out unnecessary code I was using below. For some strange reason I had to switch to an aspx from my ashx. Just make sure all of the variables you lookup in your database exist :)
I'm having some issues implementing facebook credits into my facebook app. I'm using the Facebook C# SDK and I'm sure my javascript is kosher. I found this blog to be helpful, but I am getting an AppInvalidDecodedResponse error back from facebook in my javascript callback. I am just initially trying to get the 'buy' popup to display. Here is my ashx callback specified in the app settings:
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();
}