Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix form_params usage in Permanent token sendAuthenticatedRequest #65

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

nyroDev
Copy link

@nyroDev nyroDev commented Dec 6, 2023

Using a Permanent Token,
When trying to modify description of a media with multiple lines like that:

$description = 'Line 1
Line 2';
$client->getAssetBankManager()->modifyMedia($mediaId, [
    'description' => $description,
])->wait();

I had the Guzzle error:

[InvalidArgumentException]                                              
"Line 1                                                 
Line 2" is not valid header value.

The reason is simple:
The form_params is sent to headers when creating Requests...

The fix simply remove the setting from the header and everything is working correctly for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant