dqyl2374 2016-06-24 15:07
浏览 115
已采纳

如何使用Goutte登录Amazon SellerCentral

Is there a way to login to seller central using Goutte? I tried this but it keeping saying password wrong (I tried manually and it works fine):

$client = new Client();
$crawler = $client->request('GET', 'https://sellercentral.amazon.com');
$form = $crawler->selectButton('sign-in-button')->form();
$crawler = $client->submit($form, array('username' => 'test@test.com', 'password' => '123456'));

Thanks

  • 写回答

2条回答 默认 最新

  • doujiena0025 2016-07-13 08:16
    关注

    Figure out that I can't do that using Goutte, it's too limited.

    Used phantomjs with casperjs.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?