Please inform why voting feature as Anonymous is working for android and not for iOS ?
NOTE
1. both iOS and android have init the support sdk with same app id and client id.
2. both iOS and android have set identity as Anonymous like below
let identity = Identity.createAnonymous()
Zendesk.instance?.setIdentity(identity)
trying to vote on article using below code
func upVoteArticles(artId: String) {
let helpCenterProvider = ZDKHelpCenterProvider()
helpCenterProvider.upVoteArticle(withId: artId) { result, error in
print(result)
print(error)
}
}
for iOS below error is coming
[ERROR]: This request shouldn't request an access token.
Optional(Error Domain=com.zendesk.sdk Code=403 "forbidden" UserInfo={NSLocalizedDescription=forbidden, status_code=HTTP Error: 403})
FOR ANDROID PLATFORM WITH SAME SETTING AND CODE ITS WORKING FINE. NOT ERROR RECEIVED. PLS CHECK BELOW SCREENSHOT

SO QUESTION IS WHY ANDROID PLATFORM IS WORKING FINE BUT NOT IOS. BOTH HAVE INIT THE SDK WITH APP-ID, CLIENT-ID AND URL. BOTH HAVE SET THE IDENTITY AS ANNONMOUS
