1

在 Strava 身份验证中单击授权按钮时未调用 ASWebAuthenticationSession completionHandler。下面给出的是我的代码。(使用使用 ASWebAuthenticationSession 连接到 Strava 帐户无法实现此链接。)

import AuthenticationServices

class LinkAppsViewController: UIViewController, ASWebAuthenticationPresentationContextProviding{

func authenticate()
    {
        let string = self.createWebAuthUrl()
        guard let url = URL(string: string) else { return }

        self.authSession = ASWebAuthenticationSession(url: url, callbackURLScheme: "localhost/", completionHandler:
        {
            url, error in

        })

        self.authSession!.presentationContextProvider = self

        self.authSession?.start()
    }

    fileprivate func createWebAuthUrl() -> String
    {
        var url = String.init()

        url.append("https://www.strava.com/oauth/mobile/authorize")
        url.append("?client_id=<client id>")
        url.append("&redirect_uri=http://localhost/exchange_token")
        url.append("&response_type=code")
        url.append("&approval_prompt=force")
        url.append("&grant_type=authorization_code")
        url.append("&scope=activity:write,activity:read_all")

        return url
    }

    func presentationAnchor(for session: ASWebAuthenticationSession) -> ASPresentationAnchor {
        print(session)
        return view.window!
    }
}

我的 info.plist 文件看起来像 在此处输入图像描述

4

2 回答 2

2

我通过更改我的代码得到它,例如..

fileprivate func createWebAuthUrlStrava() -> String
{
    var url = String.init()

    url.append("https://www.strava.com/oauth/mobile/authorize")
    url.append("?client_id=<client id>")
    url.append("&redirect_uri=abcd://localhost/exchange_token")
    url.append("&response_type=code")
    url.append("&approval_prompt=force")
    url.append("&grant_type=authorization_code")
    url.append("&scope=activity:write,activity:read_all")

    return url
}

信息列表

在此处输入图像描述

使用您的客户端 ID 和 abcd更改<client id>您的应用程序名称..

于 2020-08-28T06:26:18.160 回答
0

我认为您将 URL 方案格式更改为abcd. 但是,callbackURLScheme初始化时传递的参数的值ASWebAuthenticationSession必须和这个 URL Scheme( abcd) 一样。因此,您的代码应更改如下:

self.authSession = ASWebAuthenticationSession(url: url, callbackURLScheme: "abcd", completionHandler:
{ url, error in

 })

您也可以参考苹果官方文档了解如何使用ASWebAuthenticationSession.

于 2021-06-04T19:36:12.417 回答