mirror of
http://gitea.phreedom.club/localhost_frssoft/pleroma-cli
synced 2024-11-22 08:11:28 +00:00
No create app session if already exists
This commit is contained in:
parent
fd21b04bc1
commit
eab20a07c6
|
@ -28,6 +28,7 @@ fi
|
|||
|
||||
auth_api_create_client()
|
||||
{
|
||||
if [ ! -e ".app_sessions/$instance" ]; then
|
||||
curl -s --compressed --url $instance_point/apps \
|
||||
--data-urlencode 'client_name=pleroma-cli' \
|
||||
--data-urlencode 'redirect_uris=urn:ietf:wg:oauth:2.0:oob' \
|
||||
|
@ -35,6 +36,7 @@ auth_api_create_client()
|
|||
--data-urlencode 'website=https://gitea.phreedom.club/localhost_frssoft/pleroma-cli' \
|
||||
--output .app_sessions/$instance
|
||||
chmod 600 .app_sessions/$instance
|
||||
fi
|
||||
}
|
||||
|
||||
auth_api_get_code()
|
||||
|
|
Loading…
Reference in a new issue