簡體   English   中英

Facebook Instant Gaming對接會在“該玩家當前不符合比賽條件”上被封鎖。

[英]Facebook Instant Gaming Matchmaking blocked on “The player is not currently eligible to match.”

我已經設置了配對代碼,實際上使它在搜索,等待,然后找到一個匹配項(我的其他帳戶也設置為搜索)的地方工作了3次,沒有任何問題。

然后他們突然都停止工作,唯一的消息是: The player is not currently eligible to match.

這是代碼(非常通用):

FBInstant.checkCanPlayerMatchAsync().then(function(canMatch) {
    console.log("Player can match: ", canMatch);
    if (canMatch) {
     // ok if we can, let's search //
     console.log("searching for match...", tag);
     FBInstant.matchPlayerAsync(tag, true).then(function() {
         console.log(FBInstant.context.getID());
     }).catch(function(err) {
         console.log(err);
     });
   }
}).catch(function(err) {
    console.log(err);
});

tagmatch_bounty

有誰知道為什么它停止工作?

編輯:如果我使用相同的代碼創建一個新帳戶,它將正常工作。

Instant Games SDK v6.2似乎有問題。

v6.1可以按預期運行3場比賽,然后再次鎖定。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM