5

Trying to make a site that requires an external API and that API limits you to certain calls per certain time before they ban you for 24 hours and asking yourself how not to get banned :| *I'm new to webdev*

Comments
  • 5
    Create a local application, that "mocks" the answer.
  • 1
    @Makenshi THAT'S A GREAT IDEA THANKS!!
  • 1
    @mvalentin haha i like your enthusiasm :)
  • 1
    You could cache the response. mockups are good too, specially for tests
  • 0
    I honestly just know the basic of Javascript and such so I don't know the proper way to do things I guess, what I did was call the API and copy the content of the call into a json file and just call that file every time I'm suppose to call the api
  • 2
    Sounds good for now.

    Keep up and good luck!
Add Comment