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>