File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77
88## Unreleased
99- [ #393 ] ( https://github.com/Shopify/shopify-api-php/pull/393 ) [ Minor] Add support for 2025-01 API version REST resources
10+ - [ #367 ] ( https://github.com/Shopify/shopify-api-php/pull/367 ) [ Patch] Allow uppercase characters in redirect URI
1011
1112## v5.8.1 - 2024-11-13
1213- [ #387 ] ( https://github.com/Shopify/shopify-api-php/pull/387 ) [ Patch] Fix GraphQL request to properly encode query string
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ public static function begin(
6363 throw new InvalidArgumentException ("Invalid shop domain: $ shop " );
6464 }
6565
66- $ redirectPath = trim (strtolower ( $ redirectPath) );
66+ $ redirectPath = trim ($ redirectPath );
6767 $ redirectPath = ($ redirectPath [0 ] == '/ ' ) ? $ redirectPath : '/ ' . $ redirectPath ;
6868
6969 $ state = Uuid::uuid4 ()->toString ();
You can’t perform that action at this time.
0 commit comments