hello guys, im new here ๐
I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc).
I generate oauth code form https://appleid.apple.com/auth/authorize with no problem, and i want to use curl/xmlhttprequest to exchange the code for token via appwrite endpoind.... so i did it via:
curl -X POST 'https://cloud.appwrite.io/v1/account/sessions/oauth2/apple' \
-H 'Content-Type: application/json' \
-H 'X-Appwrite-Project: 675c7d58001___944f67' \
-d '{
"projectId": "675c7d58001___944f67",
"code": "c2fb5ff8dbf1844b9933c740a4e5c39d8.0.mzvu.IykmGUmzM3qdzhvsYxpwNw",
"success": "https://google.com",
"failure": "https://bing.com"
}'
but it only returns:
{"message":"The requested route was not found. Please refer to the API docs and try again.","code":404,"type":"general_route_not_found","version":"1.6.1"}
and i dont know whats wrong, how to help, what to check ๐ฆ
do I need to somehow create session with me loging into appwrite.io so then when i try to use this apple endpoint, then i already have session with appwrite.io?
Recommended threads
- Docker Compose MongoDB Setup
everythings work fine but the mongodb fails on startup everytime. log: ``` Generating random MongoDB keyfile... /bin/bash: line 9: : No such file or directory ...
- Auth broken after update from 1.8.0 to 1...
So ive been having issues creating, deleting or updating users on my appwrite instance after i updated from 1.8.0 to version 1.9.0. When trying to create a user...
- Magic Link woes/noob
Magic Link is working; it sends the link to my email. But the link itself always leads to "Page Not Found. The page you're looking for doesn't exist". Clicking ...