惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
T
Threatpost
人人都是产品经理
人人都是产品经理
大猫的无限游戏
大猫的无限游戏
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
博客园 - Franky
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
M
MIT News - Artificial intelligence
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
云风的 BLOG
云风的 BLOG
S
Security Affairs
P
Proofpoint News Feed
L
LINUX DO - 最新话题
宝玉的分享
宝玉的分享
S
Security @ Cisco Blogs
H
Hacker News: Front Page
Security Archives - TechRepublic
Security Archives - TechRepublic
Vercel News
Vercel News
Engineering at Meta
Engineering at Meta
Know Your Adversary
Know Your Adversary
Y
Y Combinator Blog
美团技术团队
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
月光博客
月光博客
量子位
博客园_首页
The Last Watchdog
The Last Watchdog
D
DataBreaches.Net
www.infosecurity-magazine.com
www.infosecurity-magazine.com
P
Privacy International News Feed
The Register - Security
The Register - Security
Schneier on Security
Schneier on Security
H
Help Net Security
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
V
Visual Studio Blog
Google DeepMind News
Google DeepMind News
F
Full Disclosure
C
Cyber Attacks, Cyber Crime and Cyber Security
MyScale Blog
MyScale Blog
aimingoo的专栏
aimingoo的专栏
S
Schneier on Security
L
Lohrmann on Cybersecurity
S
Secure Thoughts
Stack Overflow Blog
Stack Overflow Blog
Cloudbric
Cloudbric
Microsoft Security Blog
Microsoft Security Blog

博客园 - 天心PHP

去除文件夹下面所有xlsx的样式脚本 php 上传视频到阿里云OSS (不用SDK) 升级版本 断点续传 php 上传视频到阿里云OSS (不用SDK) SHEIN 开放平台授权 mercadolibre 美卡多 拉取listing Amazon SP API批量更新价格 JSON_LISTINGS_FEED Allegro API接口 Ozon API接口 Wildberries API接口 沃尔玛拉取listing和库存 沃尔玛修改促销价格 Amazon SP API 拉取产品详情和修改产品属性 Amazon SP API拉取日期范围报告和分类树 PHP 提取PDF文件内容 常用sql(1.分组取最新的 N 条数据; 2.删除重复数据 ) kaufland平台api mercadolibre 美卡多 本土授权(PKCE) go mod Amazon SP API拉取listing 和 批量调价
Amazon SP API拉取分类,五点,描述和关键字
天心PHP · 2023-07-14 · via 博客园 - 天心PHP

2023-07-14 17:57  天心PHP  阅读(325)  评论()    收藏  举报

1.用asin拉取五点,品牌,和 分类,每次最多20个 (但拉取listing的时候 法国和日本站点没有返回asin)

$result = $requestReport->applicationreport($account->merchant_id,strtolower($account->site),'/catalog/2022-04-01/items?identifiers=B0BNVT65X4,B0BTBWXLCD,B0BTBYS33P&identifiersType=ASIN&pageSize=20&&includedData=attributes,summaries&marketplaceIds='.$account->market_place_id,"","",'GET');

五点

[bullet_point] => Array
(
    [0] => Array
        (
            [language_tag] => en_CA
            [value] => Direct aftermarket parts, perfect fit for your motorcycle.
            [marketplace_id] => A2EUQ1WTGCTBG2
        )

    [1] => Array
        (
            [language_tag] => en_CA
            [value] => 100% Brand New and High Quality Carburetor Intake Joint Boot.
            [marketplace_id] => A2EUQ1WTGCTBG2
        )

    [2] => Array
        (
            [language_tag] => en_CA
            [value] => Easy to install, direct replace the old or broken one.
            [marketplace_id] => A2EUQ1WTGCTBG2
        )

    [3] => Array
        (
            [language_tag] => en_CA
            [value] => Durable rubber material, good sealing performance and oil resistant.
            [marketplace_id] => A2EUQ1WTGCTBG2
        )

    [4] => Array
        (
            [language_tag] => en_CA
            [value] => Fit for YAMAHA WARRIOR 350 YFM350X 1987-2004.
            [marketplace_id] => A2EUQ1WTGCTBG2
        )

)

品牌

[brand] => Array
(
    [0] => Array
        (
            [language_tag] => en_CA
            [value] => TKSE
            [marketplace_id] => A2EUQ1WTGCTBG2
        )

)

分类在summaries里面

[browseClassification] => Array
(
    [displayName] => Carburetors
    [classificationId] => 9153778011
)

2.法国和日本的asin可以和关键字一起拉取 (用seller_sku,一次拉一个)

$result = $requestReport->applicationreport($account->merchant_id,strtolower($account->site),'/listings/2021-08-01/items/'.$account->merchant_id.'/'.$seller_sku.'?issueLocale=en_US&includedData=issues,attributes,summaries,offers,fulfillmentAvailability&marketplaceIds='.$account->market_place_id,"","",'GET');

asin在summaries里面

[summaries] => Array
(
    [0] => Array
        (
            [marketplaceId] => A2EUQ1WTGCTBG2
            [asin] => B082SZKRXG
            [productType] => FAUCET
            [conditionType] => new_new
            [status] => Array
                (
                    [0] => BUYABLE
                    [1] => DISCOVERABLE
                )

            [itemName] => KSTE KSTE ABS Washing Machine Faucet Sink Basin Water Tap with Single Spout & Handle #4
            [createdDate] => 2020-06-02T10:12:21.748Z
            [lastUpdatedDate] => 2020-12-25T05:48:18.076Z
            [mainImage] => Array
                (
                    [link] => https://m.media-amazon.com/images/I/41UNgoYG8LL.jpg
                    [height] => 500
                    [width] => 500
                )

        )

)

关键字在 attributes 里面(很多关键字也是不返回的)

[generic_keyword] => Array
(
    [0] => Array
        (
            [language_tag] => en_CA
            [value] => Water Faucet, Water Tap, Faucet, Washing Machine Faucet, Sink Water Tap, Basin Water Tap
            [marketplace_id] => A2EUQ1WTGCTBG2
        )

)