Recommend this page to a friend! |
Classes of Kamil | PHP API Tutorial Training Server | README.md | Download |
|
DownloadTraining server for RestControlTrainingServer contains several REST endpoints e.q. with oAuth/basic authentication, which you can use for learning RestControl. Installation
Start server
Usage
Endpoints-> Plain api(without any authorization)(GET) http://IP_ADDR/plain/users Sample response:
(GET) http://ID_ADDR/plain/files/csv (GET) http://ID_ADDR/plain/files/css (GET) http://ID_ADDR/plain/files/js (GET) http://ID_ADDR/plain/files/png (GET) http://ID_ADDR/plain/cookies -> Basic auth(GET) http://IP_ADDR/basi-auth Sample response:
-> oAuth2 Endpoints(POST) http://IP_ADDR/oauth2/token > Form params: > - grant_type(optional): password, client_credentials > - client_id: string > - client_secret: string > - username: string > - password: string > - scope(optional): string > > Seeds: > - Password grant client > - client_id: 10 > - client_secret: F0NVue12qNwayx3pKJLHfJmQouOZg40YZafjjdHZ (GET) http://ID_ADDR/oauth2/users - Return list of users. >Headers: > - Content-Type: application/json > - Authorization: Bearer ACCESS_TOKEN > > Sample response:
|