Skip to content

PHP/cURL API seems to go wrong? #188

Answered by 4LPH4M3M0RY
4LPH4M3M0RY asked this question in Q&A
Discussion options

You must be logged in to vote

I have partially fixed it.

Just had to change

            'creators' => [
                "account" => $userToken,
                "value" => 10000
            ],
            'royalties' => [
                "account" => $userToken,
                "value" => 10000
            ],

to:

            'creators' => [
                [
                     "account" => $userToken,
                     "value" => 10000
                ]      
            ],
            'royalties' => [
                [
                    "account" => $userToken,
                     "value" => 10000
                ]
            ],

But yet 1 problem remains, I do not know how to build the signature up.

I curr…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@4LPH4M3M0RY
Comment options

@evgenynacu
Comment options

@4LPH4M3M0RY
Comment options

@evgenynacu
Comment options

Answer selected by eduardstal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
help wanted Extra attention is needed Tier 2 - closed
2 participants