├── .gitignore ├── LICENSE ├── README.md ├── READ_ME.TXT ├── WeiXin └── README.md ├── after_installed.png ├── aliyun ├── __init__.py └── api │ ├── __init__.py │ ├── base.py │ └── rest │ └── __init__.py ├── aliyun_demo.py ├── setup.py ├── top ├── __init__.py └── api │ ├── __init__.py │ ├── base.py │ └── rest │ ├── AppipGetRequest.py │ ├── AreasGetRequest.py │ ├── FilesGetRequest.py │ ├── HttpdnsGetRequest.py │ ├── JuItemsSearchRequest.py │ ├── KfcKeywordSearchRequest.py │ ├── OpenuidChangeRequest.py │ ├── OpenuidGetBymixnickRequest.py │ ├── OpenuidGetBytradeRequest.py │ ├── OpenuidGetRequest.py │ ├── TbkActivityInfoGetRequest.py │ ├── TbkCouponConvertRequest.py │ ├── TbkCouponGetRequest.py │ ├── TbkDgItemCouponGetRequest.py │ ├── TbkDgMaterialOptionalRequest.py │ ├── TbkDgNewuserOrderGetRequest.py │ ├── TbkDgNewuserOrderSumRequest.py │ ├── TbkDgOptimusMaterialRequest.py │ ├── TbkDgOptimusPromotionRequest.py │ ├── TbkDgPunishOrderGetRequest.py │ ├── TbkDgVegasSendStatusRequest.py │ ├── TbkDgVegasTljCreateRequest.py │ ├── TbkDgVegasTljInstanceReportRequest.py │ ├── TbkItemConvertRequest.py │ ├── TbkItemGetRequest.py │ ├── TbkItemInfoGetRequest.py │ ├── TbkItemRecommendGetRequest.py │ ├── TbkJuTqgGetRequest.py │ ├── TbkOrderDetailsGetRequest.py │ ├── TbkOrderGetRequest.py │ ├── TbkRelationRefundRequest.py │ ├── TbkScInvitecodeGetRequest.py │ ├── TbkScMaterialOptionalRequest.py │ ├── TbkScNewuserOrderGetRequest.py │ ├── TbkScNewuserOrderSumRequest.py │ ├── TbkScOptimusMaterialRequest.py │ ├── TbkScPublisherInfoGetRequest.py │ ├── TbkScPublisherInfoSaveRequest.py │ ├── TbkShopConvertRequest.py │ ├── TbkShopGetRequest.py │ ├── TbkShopRecommendGetRequest.py │ ├── TbkSpreadGetRequest.py │ ├── TbkTpwdConvertRequest.py │ ├── TbkTpwdCreateRequest.py │ ├── TbkUatmEventGetRequest.py │ ├── TbkUatmEventItemGetRequest.py │ ├── TbkUatmFavoritesGetRequest.py │ ├── TbkUatmFavoritesItemGetRequest.py │ ├── TimeGetRequest.py │ ├── TopAuthTokenCreateRequest.py │ ├── TopAuthTokenRefreshRequest.py │ ├── TopIpoutGetRequest.py │ ├── TopSdkFeedbackUploadRequest.py │ ├── TopSecretGetRequest.py │ ├── TopSecretRegisterRequest.py │ ├── TopatsResultGetRequest.py │ ├── TopatsTaskDeleteRequest.py │ ├── WirelessShareTpwdCreateRequest.py │ ├── WirelessShareTpwdQueryRequest.py │ └── __init__.py ├── wechat_account.jpg ├── 常见问题.md ├── 测试 ├── README.md ├── RESULT.md ├── config.py ├── 商品-淘宝客商品查询info.py ├── 导购-淘宝客物料下行-导购1.py ├── 导购-通用物料搜索.py ├── 推荐-根据商品ID推荐商品-淘宝客商品关联推荐查询1.py ├── 搜索-淘宝客商品查询1.py ├── 检测哪些接口能用.py ├── 没用 │ ├── get_rebate_order.py │ ├── test.py │ ├── 推广券信息查询1.py │ ├── 淘口令-创建淘口令2.py │ ├── 淘宝客新用户订单API_导购1.py │ ├── 淘宝客返利订单查询1.py │ ├── 获取佣金和优惠券1.py │ ├── 获取淘宝联盟定向招商的宝贝信息1.py │ └── 获取淘宝联盟选品库列表1.py ├── 淘口令-创建淘口令1.py ├── 淘口令-淘口令转链1.py ├── 淘口令-解析淘口令1.py ├── 渠道-淘宝客邀请码生成-社交.py ├── 订单-处罚订单查询-导购1.py ├── 订单-淘宝客维权退款订单查询1.py ├── 订单-淘宝客订单查询.py ├── 转链-优惠券-常用-链接转换1.py ├── 转链-淘宝客商品链接转换1.py ├── 转链-长链转短链.py ├── 选品库-获取列表1.py └── 选品库-获取宝贝信息1.py ├── 淘口令规则.md ├── 淘宝客私域用户管理.md └── 视频教程 ├── 两个字符串的相似度 ├── README.md └── compare_2string_similarity.py ├── 批量创建推广位 ├── 创建pid1.py └── 批量创建推广位.md ├── 正则查询淘口令.md ├── 淘口令 ├── random_emoji.py └── 淘口令+随机表情字符.md ├── 淘宝-京东-拼多多-商品图文详情.md ├── 淘宝客-推广流程.md └── 淘宝返利.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/README.md -------------------------------------------------------------------------------- /READ_ME.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/READ_ME.TXT -------------------------------------------------------------------------------- /WeiXin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/WeiXin/README.md -------------------------------------------------------------------------------- /after_installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/after_installed.png -------------------------------------------------------------------------------- /aliyun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/aliyun/__init__.py -------------------------------------------------------------------------------- /aliyun/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/aliyun/api/__init__.py -------------------------------------------------------------------------------- /aliyun/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/aliyun/api/base.py -------------------------------------------------------------------------------- /aliyun/api/rest/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- -------------------------------------------------------------------------------- /aliyun_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/aliyun_demo.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/setup.py -------------------------------------------------------------------------------- /top/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/__init__.py -------------------------------------------------------------------------------- /top/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/__init__.py -------------------------------------------------------------------------------- /top/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/base.py -------------------------------------------------------------------------------- /top/api/rest/AppipGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/AppipGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/AreasGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/AreasGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/FilesGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/FilesGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/HttpdnsGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/HttpdnsGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/JuItemsSearchRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/JuItemsSearchRequest.py -------------------------------------------------------------------------------- /top/api/rest/KfcKeywordSearchRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/KfcKeywordSearchRequest.py -------------------------------------------------------------------------------- /top/api/rest/OpenuidChangeRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/OpenuidChangeRequest.py -------------------------------------------------------------------------------- /top/api/rest/OpenuidGetBymixnickRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/OpenuidGetBymixnickRequest.py -------------------------------------------------------------------------------- /top/api/rest/OpenuidGetBytradeRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/OpenuidGetBytradeRequest.py -------------------------------------------------------------------------------- /top/api/rest/OpenuidGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/OpenuidGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkActivityInfoGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkActivityInfoGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkCouponConvertRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkCouponConvertRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkCouponGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkCouponGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkDgItemCouponGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkDgItemCouponGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkDgMaterialOptionalRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkDgMaterialOptionalRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkDgNewuserOrderGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkDgNewuserOrderGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkDgNewuserOrderSumRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkDgNewuserOrderSumRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkDgOptimusMaterialRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkDgOptimusMaterialRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkDgOptimusPromotionRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkDgOptimusPromotionRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkDgPunishOrderGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkDgPunishOrderGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkDgVegasSendStatusRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkDgVegasSendStatusRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkDgVegasTljCreateRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkDgVegasTljCreateRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkDgVegasTljInstanceReportRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkDgVegasTljInstanceReportRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkItemConvertRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkItemConvertRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkItemGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkItemGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkItemInfoGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkItemInfoGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkItemRecommendGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkItemRecommendGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkJuTqgGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkJuTqgGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkOrderDetailsGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkOrderDetailsGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkOrderGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkOrderGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkRelationRefundRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkRelationRefundRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkScInvitecodeGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkScInvitecodeGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkScMaterialOptionalRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkScMaterialOptionalRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkScNewuserOrderGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkScNewuserOrderGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkScNewuserOrderSumRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkScNewuserOrderSumRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkScOptimusMaterialRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkScOptimusMaterialRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkScPublisherInfoGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkScPublisherInfoGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkScPublisherInfoSaveRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkScPublisherInfoSaveRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkShopConvertRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkShopConvertRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkShopGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkShopGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkShopRecommendGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkShopRecommendGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkSpreadGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkSpreadGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkTpwdConvertRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkTpwdConvertRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkTpwdCreateRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkTpwdCreateRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkUatmEventGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkUatmEventGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkUatmEventItemGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkUatmEventItemGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkUatmFavoritesGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkUatmFavoritesGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TbkUatmFavoritesItemGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TbkUatmFavoritesItemGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TimeGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TimeGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TopAuthTokenCreateRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TopAuthTokenCreateRequest.py -------------------------------------------------------------------------------- /top/api/rest/TopAuthTokenRefreshRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TopAuthTokenRefreshRequest.py -------------------------------------------------------------------------------- /top/api/rest/TopIpoutGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TopIpoutGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TopSdkFeedbackUploadRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TopSdkFeedbackUploadRequest.py -------------------------------------------------------------------------------- /top/api/rest/TopSecretGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TopSecretGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TopSecretRegisterRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TopSecretRegisterRequest.py -------------------------------------------------------------------------------- /top/api/rest/TopatsResultGetRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TopatsResultGetRequest.py -------------------------------------------------------------------------------- /top/api/rest/TopatsTaskDeleteRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/TopatsTaskDeleteRequest.py -------------------------------------------------------------------------------- /top/api/rest/WirelessShareTpwdCreateRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/WirelessShareTpwdCreateRequest.py -------------------------------------------------------------------------------- /top/api/rest/WirelessShareTpwdQueryRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/WirelessShareTpwdQueryRequest.py -------------------------------------------------------------------------------- /top/api/rest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/top/api/rest/__init__.py -------------------------------------------------------------------------------- /wechat_account.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/wechat_account.jpg -------------------------------------------------------------------------------- /常见问题.md: -------------------------------------------------------------------------------- 1 | 2 | ## 常见问题 3 | 4 | - api申请 -------------------------------------------------------------------------------- /测试/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/README.md -------------------------------------------------------------------------------- /测试/RESULT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/RESULT.md -------------------------------------------------------------------------------- /测试/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/config.py -------------------------------------------------------------------------------- /测试/商品-淘宝客商品查询info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/商品-淘宝客商品查询info.py -------------------------------------------------------------------------------- /测试/导购-淘宝客物料下行-导购1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/导购-淘宝客物料下行-导购1.py -------------------------------------------------------------------------------- /测试/导购-通用物料搜索.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/导购-通用物料搜索.py -------------------------------------------------------------------------------- /测试/推荐-根据商品ID推荐商品-淘宝客商品关联推荐查询1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/推荐-根据商品ID推荐商品-淘宝客商品关联推荐查询1.py -------------------------------------------------------------------------------- /测试/搜索-淘宝客商品查询1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/搜索-淘宝客商品查询1.py -------------------------------------------------------------------------------- /测试/检测哪些接口能用.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/检测哪些接口能用.py -------------------------------------------------------------------------------- /测试/没用/get_rebate_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/没用/get_rebate_order.py -------------------------------------------------------------------------------- /测试/没用/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/没用/test.py -------------------------------------------------------------------------------- /测试/没用/推广券信息查询1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/没用/推广券信息查询1.py -------------------------------------------------------------------------------- /测试/没用/淘口令-创建淘口令2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/没用/淘口令-创建淘口令2.py -------------------------------------------------------------------------------- /测试/没用/淘宝客新用户订单API_导购1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/没用/淘宝客新用户订单API_导购1.py -------------------------------------------------------------------------------- /测试/没用/淘宝客返利订单查询1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/没用/淘宝客返利订单查询1.py -------------------------------------------------------------------------------- /测试/没用/获取佣金和优惠券1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/没用/获取佣金和优惠券1.py -------------------------------------------------------------------------------- /测试/没用/获取淘宝联盟定向招商的宝贝信息1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/没用/获取淘宝联盟定向招商的宝贝信息1.py -------------------------------------------------------------------------------- /测试/没用/获取淘宝联盟选品库列表1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/没用/获取淘宝联盟选品库列表1.py -------------------------------------------------------------------------------- /测试/淘口令-创建淘口令1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/淘口令-创建淘口令1.py -------------------------------------------------------------------------------- /测试/淘口令-淘口令转链1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/淘口令-淘口令转链1.py -------------------------------------------------------------------------------- /测试/淘口令-解析淘口令1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/淘口令-解析淘口令1.py -------------------------------------------------------------------------------- /测试/渠道-淘宝客邀请码生成-社交.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/渠道-淘宝客邀请码生成-社交.py -------------------------------------------------------------------------------- /测试/订单-处罚订单查询-导购1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/订单-处罚订单查询-导购1.py -------------------------------------------------------------------------------- /测试/订单-淘宝客维权退款订单查询1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/订单-淘宝客维权退款订单查询1.py -------------------------------------------------------------------------------- /测试/订单-淘宝客订单查询.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/订单-淘宝客订单查询.py -------------------------------------------------------------------------------- /测试/转链-优惠券-常用-链接转换1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/转链-优惠券-常用-链接转换1.py -------------------------------------------------------------------------------- /测试/转链-淘宝客商品链接转换1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/转链-淘宝客商品链接转换1.py -------------------------------------------------------------------------------- /测试/转链-长链转短链.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/转链-长链转短链.py -------------------------------------------------------------------------------- /测试/选品库-获取列表1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/选品库-获取列表1.py -------------------------------------------------------------------------------- /测试/选品库-获取宝贝信息1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/测试/选品库-获取宝贝信息1.py -------------------------------------------------------------------------------- /淘口令规则.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/淘口令规则.md -------------------------------------------------------------------------------- /淘宝客私域用户管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/淘宝客私域用户管理.md -------------------------------------------------------------------------------- /视频教程/两个字符串的相似度/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/视频教程/两个字符串的相似度/README.md -------------------------------------------------------------------------------- /视频教程/两个字符串的相似度/compare_2string_similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/视频教程/两个字符串的相似度/compare_2string_similarity.py -------------------------------------------------------------------------------- /视频教程/批量创建推广位/创建pid1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/视频教程/批量创建推广位/创建pid1.py -------------------------------------------------------------------------------- /视频教程/批量创建推广位/批量创建推广位.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/视频教程/批量创建推广位/批量创建推广位.md -------------------------------------------------------------------------------- /视频教程/正则查询淘口令.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/视频教程/正则查询淘口令.md -------------------------------------------------------------------------------- /视频教程/淘口令/random_emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/视频教程/淘口令/random_emoji.py -------------------------------------------------------------------------------- /视频教程/淘口令/淘口令+随机表情字符.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/视频教程/淘口令/淘口令+随机表情字符.md -------------------------------------------------------------------------------- /视频教程/淘宝-京东-拼多多-商品图文详情.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/视频教程/淘宝-京东-拼多多-商品图文详情.md -------------------------------------------------------------------------------- /视频教程/淘宝客-推广流程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/视频教程/淘宝客-推广流程.md -------------------------------------------------------------------------------- /视频教程/淘宝返利.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makelove/Taobao_topsdk/HEAD/视频教程/淘宝返利.md --------------------------------------------------------------------------------