Kyon147 / laravel-shopify

A full-featured Laravel package for aiding in Shopify App development
MIT License
372 stars 110 forks source link

I have updated the package ^17.3 to ^17.4. AppBridgeError causing issues #74

Closed secureweb16 closed 1 year ago

secureweb16 commented 1 year ago

https://prnt.sc/wqQd69wLlisf https://prnt.sc/zoqZA4f-OPwb

secureweb16 commented 1 year ago

I'm using blade templates

joeelia commented 1 year ago

Try replacing this in your main blade file: host: "{{ Request::get('host') }}

with this: host: "{{ is_array(\Request::get('host')) ? \Request::get('host')[0] : \Request::get('host') }}",

Kyon147 commented 1 year ago

It sounds like the app is not getting the host param at all.

Is this a fresh install?

Kyon147 commented 1 year ago

Closing this for now until further info is provided.