Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

POST request returns 403 error on deployed app #20

Open
jpcurbelo opened this issue Aug 12, 2022 · 1 comment
Open

POST request returns 403 error on deployed app #20

jpcurbelo opened this issue Aug 12, 2022 · 1 comment

Comments

@jpcurbelo
Copy link

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) {

jsonClient.post<Unit>(endpoint + UserInfo.path) {

    contentType(ContentType.Application.Json)
    body = userinfo
}

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants