xorpas 4 Posted August 10, 2023 hey i have an issue with firebase send verification code format('https://www.googleapis.com/identitytoolkit/v3/relyingparty/sendVerificationCode?key=%s',[FIREBASE_API_KEY]) the respense is { "error": { "code": 400, "message": "MISSING_CLIENT_IDENTIFIER", "errors": [ { "message": "MISSING_CLIENT_IDENTIFIER", "domain": "global", "reason": "invalid" } ] } } i can not found CLIENT_IDENTIFIER in firebase project setting Share this post Link to post
xorpas 4 Posted August 10, 2023 I resolve it by add code international at first of phone number but still not work get this error { "error": { "code": 400, "message": "MISSING_REQ_TYPE", "errors": [ { "message": "MISSING_REQ_TYPE", "domain": "global", "reason": "invalid" } ] } } Share this post Link to post
xorpas 4 Posted August 14, 2023 I use Tnethttpclient for send verification code Share this post Link to post
Hans J. Ellingsgaard 21 Posted August 17, 2023 Just a guess, but I think you haven't defined the request type in your code. What does your code look like? Share this post Link to post
xorpas 4 Posted August 19, 2023 Httpclient. Get(format('https://www.googleapis.com/identitytoolkit/v3/relyingparty/sendVerificationCode?key=%s',[FIREBASE_API_KEY])). Contenentasstring Share this post Link to post