-
Notifications
You must be signed in to change notification settings - Fork 35
feat: Apple SDK update for version 14.1.0 #100
New issue
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
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: appwrite/sdk-for-apple
Length of output: 2357
🌐 Web query:
Appwrite OAuth providers githubImagine googleImagine official documentation💡 Result:
In Appwrite Auth, the official docs show that GitHub and Google are supported OAuth2 providers (use provider values
githubandgooglewhen calling the OAuth session/token endpoints, after enabling the provider in the Appwrite Console). [1]For the Google provider setup, Appwrite’s official integration guide walks through creating a Google OAuth client, adding the Client ID/secret in Auth → Settings → OAuth2 Providers → Google, and configuring the redirect URI. [2]
If “githubImagine / googleImagine” refers to something specific beyond the GitHub/Google OAuth providers, it doesn’t appear as an official Appwrite term in the docs I found. [1]
Sources:
[1] Appwrite Account API Reference (Create OAuth2 session/token; supported providers list)
[2] Appwrite “OAuth with Google” integration guide
Remove or verify these invalid OAuth provider identifiers.
githubImagineandgoogleImagineare not valid Appwrite OAuth provider identifiers. According to official Appwrite documentation, onlygithubandgoogleare supported providers. These enum cases will fail at runtime if used. Additionally, if they are intentional (e.g., custom or upcoming providers), they should be inserted in alphabetical order between their respective base providers rather than appended at the end (e.g.,githubImagineaftergithub,googleImagineaftergoogle).🤖 Prompt for AI Agents