Fix Doku timestamp format to match API specification - #438
Merged
Conversation
DOKU rejects the access token request with "Invalid Field Format X-TIMESTAMP" because it expects yyyy-MM-ddTHH:mm:ssXXX (e.g. 2020-12-21T14:56:11+07:00) without a fractional-seconds component. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_0185MLCLoqJnXLWVHV45aGSv
|
Deployment failed for project gatherloop-pos with the following error: Learn More: https://vercel.com/m-nindra-zakas-projects-ae6b8849?upgradeToPro=build-rate-limit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updated the timestamp formatting in the Doku payment integration to match the API's expected format by removing millisecond precision.
Changes
formatTimestamp()to use"2006-01-02T15:04:05Z07:00"format instead of"2006-01-02T15:04:05.000Z07:00"(removed.000milliseconds)TestFormatTimestamp_ParsesBackAsRFC3339Nanotest to:TestFormatTimestamp_MatchesDokuFormatfor claritytime.RFC3339instead oftime.RFC3339Nanoto match the new formatImplementation Details
The Doku API expects timestamps without millisecond precision. The test now validates the exact format string rather than relying on round-trip parsing, making the expected format explicit and easier to maintain.
https://claude.ai/code/session_0185MLCLoqJnXLWVHV45aGSv