[Solved] Problem with UserLogin (Wapka API) - "WRONG_PASSWORD"
Posted: Wed May 10, 2023 8:28 pm
Hello everyone!
I am trying to use the UserLogin method of the Wapka API but I am getting the error "WRONG_PASSWORD" even though I know the password is correct. I have tried using the GET method (via URL):
And also with POST using the code below, but neither works.
Any light on what might be wrong here?
I am trying to use the UserLogin method of the Wapka API but I am getting the error "WRONG_PASSWORD" even though I know the password is correct. I have tried using the GET method (via URL):
Code: Select all
https://api.wapka.org/UserLogin?apikey=<apikey>&username=<username>&password=<password>
Code: Select all
<form action="https://api.wapka.org/UserLogin" method="post">
<input type="hidden" name="apikey" value="{{VAR(APIKEY)}}">
<input name="username" type="text" value=""><br>
<input name="password" type="password" value=""><br>
<input type="submit" value="Login">
</form>