You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use this method to authenticate user with
@PostMapping("/pusher/user-auth")
public ResponseEntity userAuthP() {
System.out.println("POST user auth");
PusherOptions options =
new PusherOptions()
.setUserAuthenticator(new HttpUserAuthenticator("http://127.0.0.1:5500/checkonline.html"));
com.pusher.client.Pusher pusher = new com.pusher.client.Pusher(key, options);
What is the issue?
I use this method to authenticate user with
@PostMapping("/pusher/user-auth")
public ResponseEntity userAuthP() {
System.out.println("POST user auth");
PusherOptions options =
new PusherOptions()
.setUserAuthenticator(new HttpUserAuthenticator("http://127.0.0.1:5500/checkonline.html"));
com.pusher.client.Pusher pusher = new com.pusher.client.Pusher(key, options);
In FE, I use
pusher.signin();
but check in console log
How can I config with java in right way?
CC @pusher/mobile
The text was updated successfully, but these errors were encountered: