Twitter-API-v2-sample-code icon indicating copy to clipboard operation
Twitter-API-v2-sample-code copied to clipboard

Incorrect usage of template literal in JavaScript code

Open maski07 opened this issue 2 years ago • 1 comments

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:

  1. Go to the section where the code is used
  2. Execute the code

Expected behavior The code should execute without any error or unexpected behavior.

Additional context Nothing

maski07 avatar Apr 24 '23 14:04 maski07

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.

maski07 avatar Apr 24 '23 14:04 maski07