php - question mark converted to %3F

one text

Solution:

SOLVED

I looked into the documentation of OSISET package and found out that query parameter needs to be passed as third parameter in array format

$request = $shop->api()->rest('GET', '/admin/api/customers/search.json', ['query' => "phone:{$phone}"]);

Reference: https://github.com/osiset/laravel-shopify/wiki/Usage

Source