muharremozdemir Selamlar, Guzzle kullanarak XML Post işlemi nasıl yapabilirim? $response = $this->client->post(self::API_PROVISION, ['Content-Type' => 'text/xml; charset=UTF8'], $requestXML); şu şekilde yaptığımda $requestXML değerini almıyor.
mgsmus muharremozdemir $this->client ->post(self::API_PROVISION, [ 'headers' => [ 'Content-Type' => 'text/xml;charset=utf-8' ], 'body' => $requestXML ]); Http::withHeaders([ 'Content-Type' => 'text/xml;charset=utf-8' ]) ->post(self::API_PROVISION, [ 'body' => $requestXML ]);