1

我正在开发一个 iPad 应用程序,我需要在其中将 Youtube 视频链接分享到 Facebook。我正在使用 FBStreamDialog 进行图像共享,如下所示: 但是,我不知道如何共享视频(我想知道媒体类型、src、href 等参数)

FBStreamDialog* dialog = [[[FBStreamDialog alloc] init] autorelease];
dialog.delegate = self;
dialog.targetId = <facebookUserId?;
dialog.userMessagePrompt = @"What's in your mind?";
dialog.attachment = @"{\"name\":\"Sample Photo\","
                    "\"href\":\"http://abstract.desktopnexus.com/wallpaper/250923\","
                         "\"caption\":\"MyAppName\",\"description\":\"Testing share\","
                         "\"media\":[{\"type\":\"image\","
                         "\"src\":\"http://static.desktopnexus.com/wallpapers/250923-bigthumbnail.jpg\","
                         "\"href\":\"http://abstract.desktopnexus.com/wallpaper/250923\"}],"
                        "\"properties\":{\"another link\":{\"text\":\"Facebook home page\",\"href\":\"http://www.facebook.com\"}}}"

[dialog show];  

有人可以帮助我吗?谢谢和问候, 迪帕

4

1 回答 1

1

我在这里解释了所有用于分享的 Facebook 元标签。你可以看看这个帖子,它可能有用。

于 2011-04-15T07:12:16.643 回答