You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Original line:
`$query = sprintf('%s&client=%s', $query, $this->clientId);`
...fails!
client ID parameter should be supplied as `client_id` and not `client`.
New line:
`$query = sprintf('%s&client_id=%s', $query, $this->clientId);`
0 commit comments