Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you are using Apache server, perhaps the HTTP:Authorization header is disabled on your server. You For security, our mobile apps use OAuth2 Authorization to authenticate mobile apps and server API. The OAuth2 requires HTTP:Authorization header to be enabled. Therefore, you should contact your hosting provider for help to enable HTTP:Authorization header

Or you can add following rules in .htaccesshtaccess  to hotfix the issue by yourself

Code Block
RewriteCond %{HTTP:Authorization} ^(.*) 
RewriteRule .* - [e=HTTP_AUTHORIZATION:%1]

...