I have been asked by a mobile dev to provide magento 2 API to create a single sign on application for my store. I have provided these info:
• curl -X POST "https://example.com/rest/V1/integration/customer/token" -H "Content-Type: application/json" -d '{"username":"user@email.com","password": "password"}'
token for above user : "ypilvsgqpfye3wkary6kkqkjpmsscfzxc"
• curl -X GET "https://example.com/rest/V1/customers/me" -H "Authorization: Bearer ypilvsgqpfye3wkary6kkqkjpmsscfzxc"
customer information.
• $ curl -X GET "https://example.com/rest/V1/customers/me" -H "Authorization: Bearer ypilvsgqpfye3wkary6kkqkjpmsscfzxc"
is this enough for them to get the information to build the app and get users to login? OR is there something that i am missing to provide? Any advice is appreciated.