https://github.com/timvw/actixdemo
https://github.com/timvw/actixdemo
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/timvw/actixdemo
- Owner: timvw
- Created: 2022-04-08T08:57:35.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:23:58.000Z (over 1 year ago)
- Last Synced: 2025-01-01T12:22:29.866Z (5 months ago)
- Language: Rust
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
curl -v http://localhost:8000/auth/login
curl -v -X POST http://localhost:8000/auth/login
curl -v -X POST http://localhost:8000/auth/login -H "Content-type: application/json" -d '{"response_type": "token"}'
curl -v -X POST http://localhost:8000/auth/login -H "Content-Type: application/x-www-form-urlencoded" -d 'response_type=token'
curl -v -X POST http://localhost:8000/auth/login -H "Content-type: application/json" -d '{"response_type": "code"}'
curl -v -X POST http://localhost:8000/auth/login -H "Content-type: application/json" -d '{"response_type": "code", "redirect_uri": "http://demo"}'
curl -v -X POST http://localhost:8000/auth/login -H "Content-type: application/json" -d '{"response_type": "code", "redirect_uri": "http://demo", "scope": "read,write"}'
curl -v -X POST http://localhost:8000/auth/login -H "Content-Type: application/x-www-form-urlencoded" -d 'response_type=code'
curl -v -X POST http://localhost:8000/auth/login -H "Content-Type: application/x-www-form-urlencoded" -d 'response_type=code&redirect_uri=http://demo'