You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have exactly the same issue - seems to be issue with the library.
I've been reported from the backend api that file key is missing in the form data and for sure it is sent to proxy.
I have exactly the same issue - seems to be issue with the library.
I've been reported from the backend api that file key is missing in the form data and for sure it is sent to proxy.
http://xxxx/aaa
$request = ServerRequestFactory::fromGlobals(); $guzzle = new \GuzzleHttp\Client(); $proxy = new Proxy(new GuzzleAdapter($guzzle)); $response = $proxy->forward($request)->to('http://yyyy');
action code in http://yyyy/aaa
var_dump($_GET,$_FILES);
curl -F "[email protected]" "http://xxxx/aaa?type=image"
result:
array(1) {
["type"]=>
string(5) "image"
}
array(0) {
}
The text was updated successfully, but these errors were encountered: