Authorization code flow with refresh token (confidential clients)
1
GET https://www.make.com/oauth/v2/authorizehttps://www.make.com/oauth/v2/authorize? client_id=your_client_id& response_ty2
https://yourapp.com/callback?code=authorization_code&state=random_state_strin3
POST https://www.make.com/oauth/v2/tokenjson{ "access_token": "eyJ...", "refresh_token": "eyJ...", "id_token": "eyJ...", "token_type": "Bearer", "expires_in": 3600}4
POST https://www.make.com/oauth/v2/tokenLast updated

