10 lines
307 B
Bash
Executable file
10 lines
307 B
Bash
Executable file
#!/usr/bin/sh
|
|
|
|
curl -v http://localhost:8085/authorize \
|
|
-G \
|
|
--cookie ".curl-cookies" \
|
|
-d client_id="a1785786-8be1-443c-9a6f-35feed703609" \
|
|
-d response_type="code" \
|
|
-d redirect_uri="https://localhost:9090/authorize" \
|
|
-d scope="read_basics" \
|
|
-d state="qxYAfk4kf6pbZkms78jM"
|