我正在使用这个facebook分享链接
https://www.facebook.com/dialog/feed?
app_id=458358780877780&
link=https://developers.facebook.com/docs/reference/dialogs/&
picture=http://fbrell.com/f8.jpg&
name=Facebook%20Dialogs&
caption=Reference%20Documentation&
description=Using%20Dialogs%20to%20interact%20with%20users.&
redirect_uri=https://mighty-lowlands-6381.herokuapp.com/
它的作用是与名称,标题和描述共享链接。
我想要的是分享照片。 (当我直接去facebook时输出相同 - >点击照片 - >然后发布)
这件事可能还是已经可用?
答案 0 :(得分:1)
您无法通过这种方式post
拍照。 picture
参数旨在欢迎自定义链接图片。
如果您想将图片发布到时间轴,您有三种选择:
将照片上传到应用的相册:https://developers.facebook.com/blog/post/498/(方案1)。
制作新相册并添加照片:https://developers.facebook.com/blog/post/498/(方案2)。
由于您要从网址而非计算机上传照片,因此以下是您需要的行:$image_url = '@' . realpath("http://fbrell.com/f8.jpg");
。然后,只需在对话框网址中使用$image_url
。
用户生成的照片:https://developers.facebook.com/docs/opengraph/usergeneratedphotos/。
答案 1 :(得分:1)
试试这个:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>My Feed Dialog Page</title>
</head>
<body>
<div id='fb-root'></div>
<script src='http://connect.facebook.net/en_US/all.js'></script>
<p><a onclick='postToFeed(); return false;'>Post to Feed</a></p> <----- click photo -> then post it
<p id='msg'></p>
<script>
FB.init({appId: "YOUR_APP_ID", status: true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
redirect_uri: 'YOUR URL HERE',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
description: 'Using Dialogs to interact with users.'
};
function callback(response) {
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}
</script>
</body>
</html>