菜鸟教程小白 发表于 2022-12-12 19:44:28

ios - 卡住试图让 Game Center 排行榜工作


                                            <p><p>我正在尝试让 gamecenter 排行榜工作,但卡住了。我正在 Xcode 模拟器上进行测试,因为我无法在设备上登录我们的沙盒帐户。我可以使用init函数通过游戏登录沙盒帐户,但排行榜没有显示在gamecenter中。在游戏下方显示我们的游戏,但在下方显示“没有排行榜或成就”。我在 itunes connect 中设置了排行榜,并在似乎有效的代码中请求 setHighScore。以下是相关代码:</p>

<pre><code>local function updateCallback(e)
    local data = json.encode( e.data )

    -- show encoded json string via native alert
    native.showAlert( &#34;e.data&#34;, data, { &#34;OK&#34; } )
end

--[[
    Update the gamecenter learderboard for gamescore.
]]--
function GameNetwork.updateGamescore()
    --Sets the score if it is higher than the one on Apple&#39;s server
    gameNetwork.request( &#34;setHighScore&#34;,
    {
      localPlayerScore = { category = &#34;com...gamescore&#34;, value = gamescore },
      listener = updateCallback
    })
end
</code></pre>

<p>按预期显示更新回调</p>

<pre><code>{&#34;value&#34;: 25,&#34;category&#34;:&#34;com...gamescore&#34;}
</code></pre>

<p>当调用 <code>updateGamescore</code> 函数时。我错过了什么吗? gamenetwork api有什么好的教程吗?</p>

<p> <a href="http://forums.coronalabs.com/topic/44940-stuck-trying-to-get-game-center-leaderboard-to-work/" rel="noreferrer noopener nofollow">Cross-post from corona forum</a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>终于明白了。问题在于应用程序 ID。我们的临时配置文件有一个通配符,而我们的应用商店没有。我使用特定的应用程序 ID 创建了一个新的临时配置文件,并且排行榜立即出现。此外,我们的临时配置文件使用的证书与应用商店证书不同,因此这也可能是问题所在。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 卡住试图让 Game Center 排行榜工作,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22122219/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22122219/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 卡住试图让 Game Center 排行榜工作