Twitter-API-v2-sample-code
Twitter-API-v2-sample-code copied to clipboard
Incorrect usage of template literal in JavaScript code
Describe the bug There is an error in the usage of template literal in the following code:
const endpointURL = `https://api.twitter.com/2/users/me?{params}`;
It should be corrected to:
const endpointURL = `https://api.twitter.com/2/users/me?${params}`;
This bug is causing unexpected behavior in the program.
To Reproduce Steps to reproduce the behavior:
- Go to the section where the code is used
- Execute the code
Expected behavior The code should execute without any error or unexpected behavior.
Additional context Nothing
I have addressed the issue in the following pull request: https://github.com/twitterdev/Twitter-API-v2-sample-code/pull/123
Would you please review the changes and consider merging them if they meet the requirements? Thank you for your attention.