Muhammad Kamal

Results 19 comments of Muhammad Kamal
trafficstars

I am using redis for session storage but still get this error.

I found out my app bridge redirect was incorrect and hence the auth was not happening in the top level window. The following changes fixed the issue: ``` const redirect...

I am also confused about it in general. However, in this particular case, the library is setting a cookie vie a set-cookie header and if the window is not top...

I am also facing the same issue. Any findings? @jt274 The Authorization header is added only when authenticatedFetch from @shopify/app-bridge-utilities is used to make a fetch request from the frontend.

I am also getting hmac validation as false for valid requests.

I switched to a custom validator. ``` import crypto from "crypto"; export function validateHmac(query) { const safeCompare = (hmac: string, queryStr: string) => { return ( hmac === crypto .createHmac("SHA256",...

I also faced this issue while deploying the nextjs app to a k8 cluster. The problem was that the API_KEY was not getting injected into the docker image during the...

The app performs much better with the production build. Therefore, there is something wrong with the development build.

I am also able to solve this issue by a different method. I have added an `assetPrefix: http://localhost:8081` in the next.config file. Due to this the application gets the assets...

@Meyenehi @Draccano I am glad it helped. I have been struggling with this for the past 6 months. I tried several workarounds but none of them seem to work satisfactorily....