Replies: 2 comments 2 replies
-
Hi @bkyerv It's not a perfect solution but could you try to remove a |
Beta Was this translation helpful? Give feedback.
0 replies
-
I believe it's related to the fetch(api.example.$url(), {
credentials: 'include',
body: JSON.stringify({any: 'thing'}),
}); But couldn't find a way to use the hono RPC feature to handle this... api.example.$post(), {
json: {
any: 'thing'
},
// how to add? credentials: 'include',
}); @yusukebe do you know if it's possible with the current implementation? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm facing an issue related to cookie handling in my app and would appreciate any assistance. I've developed a basic application with both client and server parts, each deployed on different domains. My primary objective is to instruct the browser to set a cookie so that subsequent requests use this cookie.
I suspect there might be a mistake in my implementation. Below is the code. Can anyone review and let me know if there's something I've missed or implemented incorrectly? and yes, I have ensured that all env variables are available in respective environments (i.e. when developing locally and in prod as well)
Beta Was this translation helpful? Give feedback.
All reactions