Skip to content

Commit 39c63a2

Browse files
authored
Merge pull request #367 from jaykayrey/main
Fixed bug that doesn't allow for uppercase letters in redirect_uri
2 parents fb46c24 + f72c611 commit 39c63a2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/Auth/OAuth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)