Almost blank checkout sandbox testing panel

In sandbox environment

I’ve created the payment link

If I made payment link local I can open and process it,
but if I test in on my server i get almost blank page

Where is the problem?

link example

code_example:

checkout_api = SquareClient(
    access_token=access_token, environment=environment
).checkout_api()
body = {
    "idempotency_key": order_id,
    "order": {
        "location_id": location_id,
        "line_items": [
            {
                "name": description,
                "quantity": "1",
                "metadata": {"order_id": order_id},
                "base_price_money": {"amount": amount, "currency": currency},
            }
        ],
        "metadata": {"order_id": order_id},
        "pricing_options": {},
    },
    "checkout_options": {
        "redirect_url": result_url,
    },
    "source": order_id,
}
result = checkout_api.create_payment_link(body)

steps to reproduce

  1. Open main website
  2. Send create payment link request to micro service
  3. process this request and make another to square
  4. return payment link to main web site
  5. open payment link in main web site

I think, my problem around locations, ip, etc

:wave: What’s the checkout link that this is happening with? Also what are the steps to reproduce? :slightly_smiling_face:

1 Like

topics was updated.
But I almost sure. My code is right.
mb point in project settings?

Was this ever resolved. I am running into the same exact issue with a blank checkout form showing. It appears to be a VueJS error.

Thank you

:wave: Do you have an example link? :slightly_smiling_face:

Hey, Bryan

Test Link is here: Checkout API Sandbox Testing Panel

Good morning, Bryan

Is there any update on this?