你能发现我的错误吗?
我真的很难让开放图形操作获得批准。我希望人们分享(操作)照片(对象)并请求用户消息和明确共享的功能。我从 Facebook 收到的最新评论是:
由于您的应用程序中出现错误,我们无法测试此操作。请通过使用 Auth Dialog Preview User 进行测试,确保您的操作正常运行并重新提交。
不是很有帮助!
我已经使用 Auth Dialog Preview User 测试了我的操作,并且效果很好。我还使用返回响应代码 200 的对象调试器测试了我的页面 - 这显然意味着一切都很好(正确吗?)。
下面是我在测试页面上使用的代码,希望有人能够指出我的错误在哪里,因为我看不到它:
<head>
meta tags here
<script type="text/javascript">
function Share()
{
FB.api(
'/me/NAMESPACE:share&photo=TEST PAGE URL&message=Cool photos&fb:explicitly_shared=true&access_token=ACCESS TOKEN','POST', function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Post was successful! Action ID: ' + response.id);
}
});
}
</script>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.Canvas.setAutoGrow();
}
// Do things that will sometimes call sizeChangeCallback()
function sizeChangeCallback() {
FB.Canvas.setSize({ width: 810, height: 1180 });
}
</script>
</head>
<body>
<div id="fb-root"></div>
<script>
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
// Init the SDK upon load
window.fbAsyncInit = function() {
FB.init({
appId : 'APP ID', // App ID
channelUrl : '//CHANNEL FILE URL', // Path to your Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
oauth :true
});
// listen for and handle auth.statusChange events
FB.Event.subscribe('auth.statusChange', function(response) {
if (response.authResponse) {
// user has auth'd your app and is logged into Facebook
FB.api('/me', function(me){
if (me.name) {
document.getElementById('auth-displayname').innerHTML = me.name;
}
})
document.getElementById('auth-loggedout').style.display = 'none';
document.getElementById('auth-loggedin').style.display = 'block';
} else {
// user has not auth'd your app, or is not logged into Facebook
document.getElementById('auth-loggedout').style.display = 'block';
document.getElementById('auth-loggedin').style.display = 'none';
}
});
// respond to clicks on the login and logout links
document.getElementById('auth-loginlink').addEventListener('click', function(){
FB.login();
});
document.getElementById('auth-logoutlink').addEventListener('click', function(){
FB.logout();
});
}
function loginUser() {
FB.login(function(response) { }, {scope:'publish_actions, email'});
}
</script>
<div id="auth-status">
<div id="auth-loggedout">
<a href="#" id="auth-loginlink"><img src="login_btn.png"></a>
</div>
<div id="auth-loggedin" style="display:none">
</div>
</div>
<form>
<input class="shr-btn" type="button" value="" onClick="Share()" />
</form>
</body>
任何帮助将不胜感激。
非常感谢
D
啊啊啊啊 我现在收到了来自 Facebook 的回复:
您的代码当前配置为发布流故事。您必须更改代码,以便当测试用户触发操作时,它会生成一个开放的图表故事。请进行适当的更改并重新提交。
有人可以让我知道我做错了什么吗?我认为代码的设置是为了发布一个开放的图表故事——但显然是现在。
如果有人能指出我做错了什么,我将永远感激不尽。
非常感谢。
D