Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased
- [#393](https://github.com/Shopify/shopify-api-php/pull/393) [Minor] Add support for 2025-01 API version REST resources
- [#367](https://github.com/Shopify/shopify-api-php/pull/367) [Patch] Allow uppercase characters in redirect URI

## v5.8.1 - 2024-11-13
- [#387](https://github.com/Shopify/shopify-api-php/pull/387) [Patch] Fix GraphQL request to properly encode query string
Expand Down
2 changes: 1 addition & 1 deletion src/Auth/OAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static function begin(
throw new InvalidArgumentException("Invalid shop domain: $shop");
}

$redirectPath = trim(strtolower($redirectPath));
$redirectPath = trim($redirectPath);
$redirectPath = ($redirectPath[0] == '/') ? $redirectPath : '/' . $redirectPath;

$state = Uuid::uuid4()->toString();
Expand Down
Loading