A space to discuss online store customization, theme development, and Liquid templating.
I have an API with ngrok and I'm trying to use it with a shopify proxy. Here are the details:
API url: http://XXXXXX.ngrok.io
the code that generates the API:
app = Flask(__name__, template_folder='/content')
run_with_ngrok(app)
CORS(app)
app.config['JSONIFY_PRETTYPRINT_REGULAR'] = False
@app.route("/hadikardesim", methods=["POST", "GET"])
def postME():
data = request
print(data)
return jsonify('NA DA')