Skip to content

I am unable to reuse the PublisherAPI object to do more than one request #4

Open
@JonathanAquino

Description

@JonathanAquino

// Expected: I should be able to call get() twice, or get() then Post(), on a $PublisherAPI object.
// Actual: I get an error if I call get() twice on a $PublisherAPI object. If I create a second $PublisherAPI object for the second get() call, then it works.


Code:

<?php
$api_key_id = "...";
$api_key_secret = "...";
$endpoint = "https://news-api.apple.com";

$PublisherAPI = new ChapterThree\AppleNewsAPI\PublisherAPI(
  $api_key_id,
  $api_key_secret,
  $endpoint
);

$response = $PublisherAPI->get('/channels/{channel_id}',
  [
    'channel_id' => '...'
  ]
);

$response = $PublisherAPI->get('/channels/{channel_id}',
  [
    'channel_id' => '...'
  ]
);

Output:

Warning: curl_setopt(): 123 is not a valid cURL handle resource in /home/prod/yoko/build/migrate-to-sf-colo/target/dependencies/thirdparty-php-curl-class-tar.gz/src/Curl/Curl.php on line 887

Warning: curl_setopt(): 123 is not a valid cURL handle resource in /home/prod/yoko/build/migrate-to-sf-colo/target/dependencies/thirdparty-php-curl-class-tar.gz/src/Curl/Curl.php on line 887

Warning: curl_setopt(): 123 is not a valid cURL handle resource in /home/prod/yoko/build/migrate-to-sf-colo/target/dependencies/thirdparty-php-curl-class-tar.gz/src/Curl/Curl.php on line 887

Warning: curl_setopt(): 123 is not a valid cURL handle resource in /home/prod/yoko/build/migrate-to-sf-colo/target/dependencies/thirdparty-php-curl-class-tar.gz/src/Curl/Curl.php on line 887

Warning: curl_exec(): 123 is not a valid cURL handle resource in /home/prod/yoko/build/migrate-to-sf-colo/target/dependencies/thirdparty-php-curl-class-tar.gz/src/Curl/Curl.php on line 349

Warning: curl_errno(): 123 is not a valid cURL handle resource in /home/prod/yoko/build/migrate-to-sf-colo/target/dependencies/thirdparty-php-curl-class-tar.gz/src/Curl/Curl.php on line 350

Warning: curl_error(): 123 is not a valid cURL handle resource in /home/prod/yoko/build/migrate-to-sf-colo/target/dependencies/thirdparty-php-curl-class-tar.gz/src/Curl/Curl.php on line 352

Warning: curl_getinfo(): 123 is not a valid cURL handle resource in /home/prod/yoko/build/migrate-to-sf-colo/target/dependencies/thirdparty-php-curl-class-tar.gz/src/Curl/Curl.php on line 415

Notice: Undefined offset: 2 in /home/prod/yoko/build/migrate-to-sf-colo/target/dependencies/thirdparty-php-curl-class-tar.gz/src/Curl/Curl.php on line 428

Notice: Array
(
    [code] => 
    [message] => 
    [response] => 
)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions