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've followed this tutorial to build a KMM app. Everything works fine when the app is running on the local server but the POST method returns Error 403 when deployed on Heroku. This is the function on the Client side.
val endpoint = window.location.origin // only needed until ktorio/ktor#1695 is resolved
I've followed this tutorial to build a KMM app. Everything works fine when the app is running on the local server but the POST method returns Error 403 when deployed on Heroku. This is the function on the Client side.
val endpoint = window.location.origin // only needed until ktorio/ktor#1695 is resolved
val jsonClient = HttpClient {
install(JsonFeature) { serializer = KotlinxSerializer() }
}
suspend fun sendfeedback(userinfo: UserInfo) {
}
The text was updated successfully, but these errors were encountered: