-
Notifications
You must be signed in to change notification settings - Fork 0
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
General changes #3
Comments
There's generally docs here: https://api.newsai.org/docs/ That should catalog all the endpoints. Probably not worth using this to do POST/GET requests, but just to see what endpoints exist |
|
auth changes: google login (on homepage)
gmail auth (in settings)
outlook auth (in settings)
smtp auth (in settings)
we're removing the email-settings nonsense. Nylas will handle smtp (and any other email provider). You can change SMTP to just "Other". It'll cover all cases - which aren't gmail or outlook only enable "Sign-in with Google" for now. Comment out Register/Login |
The time changes to a UNIX timestamp (the JSON renderer uses timestamp & can't change) |
there's a v1: |
There's no v1 in auth: https://api.newsai.org/api/auth/login/nylas-oauth/ (or any of the auth things) |
Login:
Email Settings:
Other:
Lists:
Cleanups + Bugs:
|
also queries change to something like
order will be -updated, -created rather than -Created, -Updated & having a slash at the end won't work -updated/ will not work |
|
API structure is similar, but a lot of internals have changed.
/
after each URL now. Django enforces this (can't get around it).Basically: used to be
/users/me
. Now it has to be/users/me/
. It will redirect you, which will cause an extra 301 - so change all to/users/me/
Even when you do
/contacts/1/
(not/contacts/1
)Endpoint
https://api.newsai.org/
For now, disable public lists & billing. No real need for them rn.
The text was updated successfully, but these errors were encountered: