能请你帮我吗, 我正在使用Java在客户端和laravel在服务器端使用实时应用程序。 我知道必须在odrer中对客户端进行身份验证才能使用私有渠道,我发现了这样的东西:
final HttpAuthorizer authorizer = new HttpAuthorizer("http://www.example.com/private_auth.php");
final PusherOptions options = new PusherOptions().setAuthorizer(authorizer);
但是我不知道如何在服务器端对它们进行身份验证?
身份验证请求的目的地应该是什么?