我正在尝试创建测试用户(有效),然后邀请他们到我的应用程序,这样我就可以测试是否可以检索跟踪数据(在数据字段内)。不幸的是,当我向测试用户发送邀请时,我得到一个例外:
API错误代码:2
API错误说明:服务 暂时不可用
错误消息:暂时服务 不可用
这是我的代码:
<input type="text" value="@ViewBag.TestId" id="theId" />
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : '193005690721590',
status : true,
cookie : true,
xfbml : true
});
};
console.log(@ViewBag.TestId);
$('#sendReq').click(sendRequest);
function sendRequest() {
FB.ui({
method: 'apprequests',
message: 'Invitation to the test application!',
title: 'Send your friends an application request',
to: $('#theId').val(),
data: 'someCode'
},
function (response) {
if (response && response.request_ids) {
var requests = response.request_ids.join(',');
$.ajax({
url: '/Home/Parse',
type: 'post',
data: response,
success: function (data) {
if (data.result === 'ok') {
alert("Everything went fine");
//top.location.href = '/Home/About';
}
}
});
} else {
alert('canceled');
}
});
return false;
}
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
} ());
</script>
我的代码获取了测试用户的正确ID,然后我尝试发送邀请但没有成功...
有什么想法吗?
答案 0 :(得分:1)
我认为您的问题可能是由于您尝试从自己的帐户邀请测试用户。 Test Users文档中列出的一个限制是“测试用户只能与其他测试用户进行交互,而不能与现场的真实用户进行交互。”