在下面的命令之后,我得到了一个新的Fastlane错误:
bundle exec fastlane beta --verbose
这是一个错误:
Could not receive the latest API key from App Store Connect, this might be a server issue
。
我还没有找到任何解决办法。
最好的
发布于 2019-12-25 07:53:12
解决方案
使用下面的命令重新创建Fastlane的会话:
fastlane spaceauth
它将向您的注册设备发送2元素身份验证代码。然后你会收到这样的信息:
Successfully logged in to App Store Connect
然后它会要求你:
pass the following via the **FASTLANE_SESSION** environment variable:
...some long terminal command and it's Example...
使用给定的“示例”来传递Fastlane的环境变量。
就这样。
我希望它能对我们宇宙中的其他人有所帮助。
发布于 2021-04-25 09:57:00
在spaceauth
上使用“”。
快速车道支持应用程序商店连接API,它有一些好处。https://docs.fastlane.tools/app-store-connect-api/
您可以在中创建"App API密钥“,如下所示:
lane :release do
api_key = app_store_connect_api_key(
key_id: "D383SF739",
issuer_id: "6053b7fe-68a8-4acb-89be-165aa6465141",
key_filepath: "./AuthKey_D383SF739.p8",
duration: 1200, # optional (maximum 1200)
in_house: false, # optional but may be required if using match/sigh
)
pilot(api_key: api_key)
end
发布于 2021-04-13 10:44:57
尝试在sudo
中使用相同的命令。
https://stackoverflow.com/questions/59476324
复制相似问题