Facebook 即时游戏对接会在 "The player is not currently eligible to match." 上被屏蔽

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 场比赛,然后再次锁定。