We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
very nice tool!
My suggestion:
In case of
... "postData": { "mimeType": "application/x-www-form-urlencoded", "params" : [ { "name": "params[IDENTIFIER]", "value": "DUMMY_ACCOUNT" }, { "name": "params[OPERATIONTYPE]", "value": "create" }, } ...
it would be nice that in the php code to have something like
... CURLOPT_POSTFIELDS => http_build_query([ 'params[IDENTIFIER]' => 'DUMMY_ACCOUNT', 'params[OPERATIONTYPE]' => 'create', ]) ...
instead of
... CURLOPT_POSTFIELDS => "params%5BIDENTIFIER%5D=DUMMY_ACCOUNT¶ms%5BOPERATIONTYPE%5D=create" ...
The text was updated successfully, but these errors were encountered:
makes sense .. did you want to take a stab at making this change, and claim all the fame and glory? :)
Sorry, something went wrong.
ahmadnassri
No branches or pull requests
Hello,
very nice tool!
My suggestion:
In case of
it would be nice that in the php code to have something like
instead of
The text was updated successfully, but these errors were encountered: