-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
Hello
When I run :
client.addClientActionListener(new ClientActionListener() {
@Override
public void onQRCodeScanRequired(BufferedImage qr) {
System.out.println("Authentication required! Please scan the QR code!");
File outputFile = new File("qr.jpg");
try {
ImageIO.write(qr, "jpg", outputFile);
} catch (IOException e) {
e.printStackTrace();
}
}
});
int httpCode = client.openConnection();
if (httpCode == 200) {
System.out.println("Logged in successfully!");
} else {
System.out.println("Login failed! Code: " + httpCode);
}
throw an exception :
Exception in thread "main" java.lang.IllegalStateException: Not a JSON Object: ["Cmd",{"type":"update"}] at com.google.gson.JsonElement.getAsJsonObject(JsonElement.java:91) at icu.jnet.whatsjava.helper.Utils.encodeValidJson(Utils.java:56) at icu.jnet.whatsjava.whatsapp.WABackendConnector.initOrRestoreSession(WABackendConnector.java:101) at icu.jnet.whatsjava.whatsapp.WABackendConnector.openConnection(WABackendConnector.java:58)
Metadata
Metadata
Assignees
Labels
No labels