Skip to content

Unable to update value of already set cookie in WebView #168

Open
@karel-suchomel-ed

Description

@karel-suchomel-ed

Hello,
I'm using this library to set a session cookie PHPSESSID in WebView. My app has an e-shop on a website which I'm displaying in WebView and to "share" the user session from the app to WebView I'm using an auth token. When I try to set the PHPSESSID cookie in a browser manually it works as expected, but in a WebView the cookie is not getting updated.

I'm settings this cookie on the browser mount in useEffect and before every page load like this.

 const onLoadStart = (event: WebViewNavigationEvent) =>
    if (cookie && isLogged) {
      ;(async () => {
        await CookieManager.set('https://www.example.com/', {
          name: 'PHPSESSID',
          value: cookie.sub,
          domain: 'www.example.com',
          version: '1',
          secure: true,
          httpOnly: true
        })
      })()
    }
    setCurrentUrl(event.nativeEvent.url)
    setIsLoading(true)
  }

When I try to set any random test cookie I can see that it is set correctly the first time, but after it already exists its value cannot be updated.

Has anyone experienced the same issue or does anybody know, whether or not it is possible to update the PHPSESSID cookie in webview?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions