blob: a3fadd4558d4639896574b712d70af75ba25f461 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
set -e
cd "$(dirname "$0")/.."
curl -s "http://localhost:8282/authorize?response_type=code&scope=openid&client_id=f00d&state=potatoe&redirect_uri=http://example.org/callback"
|