We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
account.createOAuth2Session()
It should generate a URL where scopes are like scopes[]=user.read&scopes[]=user.write
scopes[]=user.read&scopes[]=user.write
Instead, the scopes get generated like scopes[]=[user.read, user.write].
scopes[]=[user.read, user.write]
This is probably due to the invalid handling of the list here:
sdk-for-android/library/src/main/java/io/appwrite/services/Account.kt
Line 1212 in 85fac9d
Appwrite Cloud
Linux
No response
The text was updated successfully, but these errors were encountered:
stnguyen90
No branches or pull requests
👟 Reproduction steps
account.createOAuth2Session()
and pass in a list of strings for the scopes👍 Expected behavior
It should generate a URL where scopes are like
scopes[]=user.read&scopes[]=user.write
👎 Actual Behavior
Instead, the scopes get generated like
scopes[]=[user.read, user.write]
.This is probably due to the invalid handling of the list here:
sdk-for-android/library/src/main/java/io/appwrite/services/Account.kt
Line 1212 in 85fac9d
🎲 Appwrite version
Appwrite Cloud
💻 Operating system
Linux
🧱 Your Environment
No response
👀 Have you spent some time to check if this issue has been raised before?
🏢 Have you read the Code of Conduct?
The text was updated successfully, but these errors were encountered: