Announcement

Collapse
No announcement yet.

Mvt:Call headers section

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • RayYates
    replied
    Thank you sir!

    Leave a comment:


  • wmgilligan
    replied
    I would say:
    Code:
    <MvAssign name="l.crlf" value="{  asciichar(13) $ asciichar(10) }">
    (
    Code:
    HEADERS="{ 'Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept' $ l.crlf $ 'Access-Control-Allow-Methods: POST' $ l.crlf $ 'Access-Control-Allow-Origin: *' $ l.crlf }" CONTENT-TYPE="application/json"

    Leave a comment:


  • RayYates
    started a topic Mvt:Call headers section

    Mvt:Call headers section

    I'm making a page template mvt:call to the UPS api.
    Given the code below. What goes in headers="???????"

    The API specs say
    Use HTTP/s POST.
    The JSON API expects the following HTTP headers:
    Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept
    Access-Control-Allow-Methods: POST
    Access-Control-Allow-Origin: *
    Content-Type: application/json


    Code:
    <mvt:call action = "g.url"
            method = "POST"
            content-type = "'application/json'"
            headers = "??????">
        <mvt:assign name="g.return" value="g.return $  s.callvalue" />
    </mvt:call>
Working...
X