C# facebook graph / 如何上传Facebook相册中的图片?

发布于 2024-10-07 18:31:50 字数 417 浏览 1 评论 0原文

我正在尝试使用 ASP.NET 和 C# 上传图像。我不知道如何在参数中发送图像 source="F://sample.jpg"。我还尝试以字节格式发送图像。

网址是 http://graph.facebook.com/album_id/photos?access_token=access_tokenvalue ;

发布数据是

来源=“F://sample.jpg”

我遇到异常。请帮我解决这个问题。

提前致谢。

I am trying to upload an image using ASP.NET with C#.I do not how to send image in parameter
source="F://sample.jpg".I have also tried to send an image in a byte format.

URL is
http://graph.facebook.com/album_id/photos?access_token=access_tokenvalue;

Post Data is

source= "F://sample.jpg"

I am getting an exception.Please help me to sort out this issue.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浊酒尽余欢 2024-10-14 18:31:50

您能发布您收到的错误消息吗?可能有助于准确追踪错误是什么。无论如何,我对 Facebook API 不太熟悉,但它出现在 照片,您必须在文件路径前添加 @ 前缀。

source="@F:\\sample.jpg"

Could you post the error message you're getting? Might be helpful in tracking down exactly what the error is. In any case, I'm not too familiar with the Facebook APIs but it appears in the Graph API document for Photo that you have to prefix the file path with an @.

source="@F:\\sample.jpg"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文