Skip to content

Tag: oauth-2.0

Zoom Api – I can’t update a meeting

I am trying to update a meeting using Zoom API but I can’t get it to work. I’m trying to do a PATCH request using eleague oauth2 client like this: I’m getting an empty response, and I’m not sure what is missing. Can anyone help me? Answer basically the response given by the api is blan…

Zoom API – Request to check email does not work

I am trying to consume Zoom’s API using PHP and Oauth2. I was able to connect to the aplication and get the token using the generic lib oauth2-client. But, when I try to make a simple request, I get an error, saying that the email is missing. This is my code: As you can see, I am passing the email

creating an invoice using OAuth2 in xero

I am following along with the code samples provided here – https://github.com/XeroAPI/xero-php-oauth2/blob/master/docs/Api/AccountingApi.md#createInvoice However, i am always receiving the following error message: “ErrorNumber”: 17, “Type”: “NoDataProcessedException”,…

How to get an OAuth 2.0 token in PHP?

I need to connect to a REST API of a customer. The first step is to get an OAuth 2.0 access token. I got the following information from the customer: Login (I assume it’s the client_id) Password (I assume it’s the client_secret) The flow is password The regular API URL The Token API URL I found co…