Hello, I am trying to use an api for otp verification i don't want to create the account on number verification that's why i am using 3rd party api instead of firebase but i am having issue in it
curl -L -X POST 'https://otp.dev/api/verify/' \
-u 'endfpxa1igthcu5p6mzxf7k:shzf4c81e3bydjl76ixr9wugv' \
-F 'channel="sms"' \
-F 'phone_sms="+60123456789"' \
-F 'callback_url="https://mysite.test/payments/otp-callback/"' \
-F 'success_redirect_url="https://mysite.test/payments/qHgZiJQ8YF/otp-complete/"' \
-F 'fail_redirect_url="https://mysite.test/payments/qHgZiJQ8YF/otp-fail/"' \
This is the example given on their website but in flutter flow when i add the authorization token and key in header of api call in flutter flow it always returns credential not provided although in header i am providing the api key and api token
This my header i am not sure whether the format i am giving in header is wrong for flutter flow or something else?