Hello
I'm trying out the iOS sdk using a generated access token but I keep getting an "Access token not found" error even though the token works fine in android.
Here is my case (swift):
let dropboxSession = DBSession(appKey: DB_KEY, appSecret: DB_SECRET, root: kDBRootAppFolder)
dropboxSession.updateAccessToken(DB_ACCESS_TOKEN, accessTokenSecret: DB_ACCESS_TOKEN_SECRET, forUserId: DB_USER_ID)
DBSession.setSharedSession(dropboxSession)
So I'd appreciate to know what "DB_ACCESS_TOKEN_SECRET" should be since the generated token is a single string?