gpt4 book ai didi

silverlight - WP7 上的 POST 请求

转载 作者:行者123 更新时间:2023-12-03 07:44:07 25 4
gpt4 key购买 nike

我花了大约 6 个小时试图弄清楚如何在 WP7 中发出常规 POST 请求,我尝试了此处和许多其他地方发布的类似问题的答案,我还尝试了许多不同的 API POST 请求,它们都会导致一个特定的问题,

The remote server returned an error: NotFound.

好像每次都少了点什么。

所以,如果您请有人向我们展示如何在此 WP7 中正确获取 POST 请求

最佳答案

我用它来发布到 Facebook 没有任何问题:

HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(requestUrl);
request.Method = "POST";
request.BeginGetResponse((e) =>
{
try
{
WebResponse response = request.EndGetResponse(e);
// Do Stuff
}
catch (WebException ex)
{
// Handle
}
catch (Exception ex)
{
// Handle
}
}, null);

我假设您已经尝试过此操作,因此它可能与发布数据有关(上面的示例中没有,因为 facebook 使用查询字符串)。您能给我们更多信息吗?

编辑:这是一个(未经测试的)编写帖子数据的示例:

HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(requestUrl);
request.Method = "POST";
request.BeginGetRequestStream((e) =>
{
using (Stream stream = request.EndGetRequestStream(e))
{
// Write data to the request stream
}
request.BeginGetResponse((callback) =>
{
try
{
WebResponse response = request.EndGetResponse(callback);
// Do Stuff
}
catch (WebException ex)
{
// Handle
}
catch (Exception ex)
{
// Handle
}
}, null);
}, null);

关于silverlight - WP7 上的 POST 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8052434/

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