テストプッシュを送信しようとしているときに、応答を下回っています
プッシュ応答 プッシュが送信されました!
応答: サーバーから返されました: 500 内部サーバー エラー
そして、プッシュ通知を受け取るための私のコードは以下の通りです
namespace FourSquareService
{
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
[System.Web.Script.Services.ScriptService]
public class FourSquare : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string ReadFourSqurePush()
{
if (HttpContext.Current.Request != null)
{
return "Hello World";
}
return string.Empty;
}
}
}
誰でも私を助けることができますか?