#Steven Gauerke

1 messages · Page 1 of 1 (latest)

wise barnBOT
thorn totem
#

This is a server for the Stripe API, are you using those IDs in some Stripe API call? If so can you send your Stripe code here?

gleaming salmon
#

yes heres my code

`$meetingId = $qry['meeting_id'];

        $curl = curl_init();

        curl_setopt_array($curl, array(
          CURLOPT_URL => "https://api.zoom.us/v2/meetings/{$meetingId}/recordings",
          CURLOPT_RETURNTRANSFER => true,
          CURLOPT_ENCODING => "",
          CURLOPT_MAXREDIRS => 10,
          CURLOPT_TIMEOUT => 30,
          CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
          CURLOPT_CUSTOMREQUEST => "GET",
          CURLOPT_HTTPHEADER => array(
            "authorization: Bearer " . $bearer,
            "content-type: application/json"
          ),
        ));

        $response = curl_exec($curl);`
thorn totem
#

That doesn't look like Stripe code. Are you basing this off of some documentation somewhere and if so can you link it to me?

gleaming salmon
#

im sorry. I'm in the wrong server lol

#

I was working in stripe but also helping a customer with Zoom and just got mixed up. So sorry

thorn totem
#

There we go, I had a feeling that was the case. Good luck solving your other thing!