ACCESS DEINIED error for product upload

  • wopa_stamps

    23 mensajes

    Gibraltar

    Hi there,

    We have to upload over 30,000 items to Delcampe via the API but when we tarted uploading sales our account was blocked with the message ACCESS denied

    Can you please advise and have our account unblocked

    Thanks and best regards

    WOPA
  • Cuenta eliminada
    Administrador
    Cuenta eliminada

    0 mensajes

    Bélgica

    Los datos ya no están disponibles porque la cuenta de este usuario ha sido eliminada (Reglamento RGPD)
  • wopa_stamps

    23 mensajes

    Gibraltar

    while re-activating closed auctions and modifying the prices for these products (2 api calls for each product) we’ve encountered the following issues after successfully bringing about 2000 products back online

    <Delcampe_Notification>
    <Notification_Token>f7d5b4f9fb6f4d5bc3a0556e8a85f000</Notification_Token>
    <Notification_Datetime>2019-02-14 10:24:16</Notification_Datetime>
    <Notification_Data>
    <Headers>
    <Ressource>item/567008589</Ressource>
    <Action>PUT</Action>
    <Status>200</Status>
    </Headers>
    <body>
    <item>
    <status>Your request was taken into account!</status>
    <personal_reference>18360</personal_reference>
    </item>
    </body>
    </Notification_Data>
    </Delcampe_Notification><html>
    <head><title>504 Gateway Time-out</title></head>
    <body bgcolor="white">
    <center><h1>504 Gateway Time-out</h1></center>
    <hr><center>nginx/1.14.2</center>
    </body>
    </html>
    <?xml version="1.0" encoding="UTF-8"?>
    <Delcampe_Notification>
    <Notification_Token>dcf7497a0646133e2798673046670902</Notification_Token>
    <Notification_Datetime>2019-02-14 10:30:37</Notification_Datetime>
    <Notification_Data>
    <Headers>
    <Ressource>item/567008598</Ressource>
    <Action>PUT</Action>
    <Status>403</Status>
    </Headers>
    <body>
    <error>Access Denied.</error>
    </body>
    </Notification_Data>
    </Delcampe_Notification><?xml version="1.0" encoding="UTF-8"?>
    <Delcampe_Notification>
    <Notification_Token>b87bf7119f4773c62b6bdd874c717c29</Notification_Token>
    <Notification_Datetime>2019-02-14 11:13:54</Notification_Datetime>
    <Notification_Data>
    <Headers>
    <Ressource>item/567008598</Ressource>
    <Action>PUT</Action>
    <Status>403</Status>
    </Headers>
    <body>
    <error>Access Denied.</error>
    </body>
    </Notification_Data>
    </Delcampe_Notification>


    i believe that this answers your questions. no need to send our code as it worked for the 2000+ products before that right?
  • wopa_stamps

    23 mensajes

    Gibraltar

    Please reply we need to upload items to Delcampe
  • Cuenta eliminada
    Administrador
    Cuenta eliminada

    0 mensajes

    Bélgica

    Los datos ya no están disponibles porque la cuenta de este usuario ha sido eliminada (Reglamento RGPD)
  • Cuenta eliminada
    Administrador
    Cuenta eliminada

    0 mensajes

    Bélgica

    Los datos ya no están disponibles porque la cuenta de este usuario ha sido eliminada (Reglamento RGPD)
  • wopa_stamps

    23 mensajes

    Gibraltar

    Los datos ya no están disponibles porque la cuenta de este usuario ha sido eliminada (Reglamento RGPD)
    • Creado 18 feb 2019 a 6:12
    • #967027
    REST
  • wopa_stamps

    23 mensajes

    Gibraltar

    This is the message we got once again today - it seems Delcampe is denying us access

    <?xml version="1.0" encoding="UTF-8"?>
    <Delcampe_Notification>
    <Notification_Token>20a9784596a6e22ca723767e9fa51b54</Notification_Token>
    <Notification_Datetime>2019-02-18 11:24:15</Notification_Datetime>
    <Notification_Data>
    <Headers>
    <Ressource>item/567008598</Ressource>
    <Action>PUT</Action>
    <Status>403</Status>
    </Headers>
    <body>
    <error>Access Denied.</error>
    </body>
    </Notification_Data>
    </Delcampe_Notification>
  • Cuenta eliminada
    Administrador
    Cuenta eliminada

    0 mensajes

    Bélgica

    Los datos ya no están disponibles porque la cuenta de este usuario ha sido eliminada (Reglamento RGPD)
  • wopa_stamps

    23 mensajes

    Gibraltar

    Los datos ya no están disponibles porque la cuenta de este usuario ha sido eliminada (Reglamento RGPD)
    • Creado 18 feb 2019 a 9:01
    • #967147
    Yes we are trying to BULK POST ITEMS
  • wopa_stamps

    23 mensajes

    Gibraltar

    Yes we are trying to BULK POST ITEMS
    • Creado 18 feb 2019 a 9:43
    • #967171
    SORRY NOT BULK, we are trying to post them as single requests
  • Cuenta eliminada
    Administrador
    Cuenta eliminada

    0 mensajes

    Bélgica

    Los datos ya no están disponibles porque la cuenta de este usuario ha sido eliminada (Reglamento RGPD)
  • wopa_stamps

    23 mensajes

    Gibraltar

    Los datos ya no están disponibles porque la cuenta de este usuario ha sido eliminada (Reglamento RGPD)
    • Creado 18 feb 2019 a 10:55
    • #967216
    We tried several items, we always get ACCESS DENIED we have been following every step of the API manual.
  • Cuenta eliminada
    Administrador
    Cuenta eliminada

    0 mensajes

    Bélgica

    Los datos ya no están disponibles porque la cuenta de este usuario ha sido eliminada (Reglamento RGPD)
  • wopa_stamps

    23 mensajes

    Gibraltar

    Los datos ya no están disponibles porque la cuenta de este usuario ha sido eliminada (Reglamento RGPD)
    • Creado 19 feb 2019 a 4:14
    • #967429
    It’s simply restarting a closed auction.



    $token=login();

    $arrProductData = array('type' => 'fixedPrice',
    'item' => array(
    'personal_reference' => $personal_reference
    )
    );
    $arrProductData['item']['action'] = 'restart';

    $url = ' Vinculo (http) ;
    $ch = curl_init();
    curl_setopt ($ch, CURLOPT_URL, $url);
    curl_setopt ($ch, CURLOPT_POSTFIELDS, http_build_query($arrProductData) ); curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, "PUT"); curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true);
    $xml_response = curl_exec($ch);

    echo $xml_response;
  • wopa_stamps

    23 mensajes

    Gibraltar

    All we want to do is re-activate products as we cannot modify prices until these are on the store. Then once this is done we have many tens of thousands of items to upload so we really do not understand why these has failed .

    My non-technical) assumption is that the code is all working well but Delcampe system has seen 2000+ calls from our account and has put a stop or denied further access until it is checked as the code worked for 2000 products before it suddenly stopped.

    Please ask the other experts on the technical team as we really want to start upoloading items its been many days without a resolution
  • Cuenta eliminada
    Administrador
    Cuenta eliminada

    0 mensajes

    Bélgica

    Los datos ya no están disponibles porque la cuenta de este usuario ha sido eliminada (Reglamento RGPD)

Únese a la comunidad de coleccionistas

Inscripción Identificarse