Eric Deng

Results 15 comments of Eric Deng

On Sun, Sep 17, 2017 at 7:18 AM xtuyaowu wrote: > 如题,加个好友吧! > > — > You are receiving this because you are subscribed to this thread. > Reply to...

I think it's doable but need huge refactoring of code

It's same secure as how https is secure. I mean when you need to pass a parameter whenever your function need authentication, this cause huge amount of code modification. I...

![image](https://github.com/user-attachments/assets/74c49143-47e5-4cb0-a3f3-a5bc8569b8ae) I think it is this code which throw the error

Maybe after complied with production mode, js name is mangled so `$metadata$` can not reference to what it should be?

Another guess is, in production mode, plugin-generated code is not send to bundle and being mangled together?

Hello! I am already using this, but encounter a problem: when user not logged in, trying to connect ws returns 401, and service creation is failed. But I must have...

client: ```kotlin object RPC { private val client = HttpClient { installRPC() install(Auth) { bearer { loadTokens { BearerTokens(UserContext.token, "") } refreshTokens { BearerTokens(UserContext.token, "") } } } } private...

I was using REST before, and auth is 100% ok. I just switch from normal ktor to rpc.