When authorizing a user for a first party mobile app API, I send the following request:
localhost:5000/oauth/token?client_id=9qFbZD4udTgFVYo0u5U9kZX2iuzbdcJDRAquTfRk&grant_type=password&username=MyUsername&password=MyPassword
The issue with this is that I need to already have an account created as well as a client_id available.
My question is, when a user downloads my app, how should I send a request to my API to create a client record (which requires a user to create since I have a foreign key linking the client to the user's ID) and user record in my database since there is not an authorization token? Thanks.
When any client installs your application, you can let client register first into the application. When the client registers it will hit one of the API that you have to create the client details into the system. After the client has registered then you can allow him to login and continue doing the token authentication.
User can either register into your application or use third party login like Facebook or Google for registering into the system provided your application trusts these identity providers.