Uber Carthage swift LoginManager(loginType: .AuthorizationCode) giving accessToken=nil

105 Views Asked by At

I am trying to integrate Uber SDK with my current iOS app.

I have Xcode :- 8.1 iOS :-10.1 and swift version :- 3.0

I have done setup for "Carthage" for Uber integration.

let loginManager = LoginManager(loginType: .AuthorizationCode)

loginManager.state = NSUUID().UUIDString

let requestedScopes = [RidesScope.Request, RidesScope.AllTrips]

loginManager.login(requestedScopes: requestedScopes, presentingViewController: self) { (accessToken, error) -> () in
}

accessToken alway nil.

Here is my plist for uber settings

<key>UberCallbackURIs</key> 
<array> 
    <dict> 
        <key>URIString</key> 
        <string>swiftsdk://connect</string> 
        <key>UberCallbackURIType</key> 
        <string>Implicit</string> 
     </dict> 
     <dict> 
        <key>URIString</key> 
                <string>swiftsdk://connect</string> 
        <key>UberCallbackURIType</key> 
                <string>AuthorizationCode</string>
     </dict>
     <dict> 
        <key>URIString</key>
                <string>swiftsdk://connect</string> 
        <key>UberCallbackURIType</key> 
                <string>Native</string>
      </dict> 
</array>    

<key>UberClientID</key>
        <string>ClientID</string> 
<key>UberClientSecret</key> 
        <string>ClientSecret</string> 
<key>UberDisplayName</key> 
        <string>Swift-SDK</string> 
<key>UberServerToken</key>
        <string>ServerToken</string>

Please help me.

i stuck here not able to execute my project. any suggestion will be useful for me.

Thanks in advance.

1

There are 1 best solutions below

3
On

Did you complete all steps from official integration guide?