-
Notifications
You must be signed in to change notification settings - Fork 82
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
What is the endpoint I can use if I wanted to programatically create an account? #72
Comments
POST Minimal Body {
"email": "{email}",
"password": "{{password}}",
"password_confirm": "{{password}}",
"reauth": false,
"country": "u014" // OPTIONAL: defaults to eu
}
The response is nearly identical to the login endpoint. You will need to verify the pin emailed to you. Likely using the same API endpoint as described during the login process. |
Thanks 🙏🏿 man. What is the baseurl? |
Base URL aka "initial server URL" is |
In your experience, do they throttle your requests? I'm building something that will need to pull loads of videos from their APIs. |
Also, do you know what the country codes are? Or can you point me in the direction where I can find these details out myself? |
I'm not actually sure. I just started looking into their API today. I'd recommend simulating what a typical user can do and staggering your requests.
I just realized the GET It returns a very long list otherwise I'd include it. I guess you'd pick one of those during registration. |
Hi @MattTW, thank you for this lib. One feature is missing that I need to use. If you can point me in the right direction then I can add it in myself. Do you know the REST endpoint Blink uses when creating accounts?
Thank you in advance!!
The text was updated successfully, but these errors were encountered: