如何将 UIImage 发布到 Facebook

发布于 2024-11-09 01:48:53 字数 594 浏览 0 评论 0原文

我想将图像从 UIImage 发布到 Facebook,但是此代码需要 imageURL。如何?

  • (void)publishFeedWithName:(NSString*)名称 标题文本:(NSString*)标题 图片网址:(NSString*)url 链接地址:(NSString*)href userMessagePrompt:(NSString*)提示 动作标签:(NSString*)标签 动作文本:(NSString*)文本 动作链接:(NSString*)链接 目标 ID:(NSString*)目标{ [自我帖子FeedWithName:名称 标题文本:标题 图片网址:网址 链接地址:href 用户消息提示:提示 动作标签:标签 动作文本:文本 动作链接:链接 目标ID:目标]; }

I want to publish image from UIImage to Facebook however this code needs imageURL. How?

  • (void) publishFeedWithName:(NSString*)name
    captionText:(NSString*)caption
    imageurl:(NSString*)url
    linkurl:(NSString*)href
    userMessagePrompt:(NSString*)prompt
    actionLabel:(NSString*)label
    actionText:(NSString*)text
    actionLink:(NSString*)link
    targetId:(NSString*)target{
    [self postFeedWithName:name
    captionText:caption
    imageurl:url
    linkurl:href
    userMessagePrompt:prompt
    actionLabel:label
    actionText:text
    actionLink:link
    targetId:target];
    }

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

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

发布评论

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

评论(1

别低头,皇冠会掉 2024-11-16 01:48:53

首先,您需要获取 JPG 或其他可传输文件图像的图像。这可以使用 UIImageJPEGRepresentation 来完成,如下所示: https://stackoverflow.com/questions /1282830/uiimagepickercontroller-uiimage-memory-and-more

我现在无法访问安装了 Facebook SDK 的盒子以及可以上传图像的示例应用程序,所以我无法判断您目前如何执行此操作的详细信息。但 Facebook SDK 示例包向您展示了如何做到这一点。

First you need to get the image as a JPG or other transmittable file image. That can be done with UIImageJPEGRepresentation as described about halfway down here: https://stackoverflow.com/questions/1282830/uiimagepickercontroller-uiimage-memory-and-more

I don't have access right now to the box where I have the Facebook SDK installed and the example app that can upload an image, so I can't tell you the details of how to do that at present. But the Facebook SDK example package shows you how to do it.

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