xdevplatform/Twitter-API-v2-sample-code

Incorrect usage of template literal in JavaScript code

Opened this issue · 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

I have addressed the issue in the following pull request:
#123

Would you please review the changes and consider merging them if they meet the requirements?
Thank you for your attention.