This is my first time using axios and I have encountered an error.
axios.get( `http://someurl.com/page1?param1=1¶m2=${param2_id}` ) .then(
my problem was about the url I was requesting to. I hadn't inserted http:// at the beginning of my url. I mean I was requesting to a url like 92.920.920.920/api/Token instead of http://92.920.920.920/api/Token. adding http:// solved my problem.
http://
92.920.920.920/api/Token
http://92.920.920.920/api/Token