Fastlane完成并显示错误未经授权的访问

时间:2019-03-01 13:07:21

标签: ios continuous-integration fastlane

通过Fastlane将我的应用程序发送到testflight时,我遇到了以下错误:

  

未经授权的访问

**FastLanelane summary**

| 1    | opt_out_usage      | 0           |

| 2    | default_platform   | 0           |

| 3    | update_fastlane    | 0           |

| 4    | clear_derived_data | 0           |

| 5    | cocoapods          | 3           |

| 6    | gym                | 87          |

|    | pilot              | 3           |
  

错误[2019-03-01 15:51:34.03]:快速通道已完成并发生错误

     

正在寻找与fastlane / fastlane相关的GitHub问题...搜索   查询:由于以下原因,请求无法完成:未经授权   访问

这是我的Fasfile:

platform :ios do
  desc "Push a new beta build to TestFlight"
  lane :beta do

    update_fastlane
    clear_derived_data
    cocoapods(clean: true, use_bundle_exec: false)

    # Build
    gym(clean: true, suppress_xcode_output: true, workspace: "com.xxxx.xcworkspace", scheme: "com.xxxx")

    # Submit to iTunes Connect (upload_to_testflight)
    pilot(skip_submission: true, skip_waiting_for_build_processing: true)

    upload_symbols_to_crashlytics # Upload dSYM symbolication files to Crashlytics
  end
end

1 个答案:

答案 0 :(得分:0)

我注意到我错误输入了两个因素Authentication (6-digit code) code

请记住,从2019年2月27日开始,Apple将要求所有开发人员为其Apple ID启用two-factor authentication,并在该日期之后登录开发人员帐户需要两个因素。意味着这对于我们的快速车道流也是必要的。

此外,请确保您的角色权限至少应为App Manager