All Projects → dkeng → opentaobao-go

dkeng / opentaobao-go

Licence: MIT license
🎉淘宝Api、淘宝开放平台Api请求基础SDK

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to opentaobao-go

Taobaokeapi
淘宝客API演示
Stars: ✭ 128 (+966.67%)
Mutual labels:  taobao
Gzxtaobaoappflutter
Flutter淘宝App,支持iOS、Android
Stars: ✭ 2,039 (+16891.67%)
Mutual labels:  taobao
CoolFrame
iOS搭建高可用APP框架,实现快速开发 。
Stars: ✭ 38 (+216.67%)
Mutual labels:  taobao
Taobaoscrapy
😩Tool For Taobao/Tmall| 儿时玩具已经过时
Stars: ✭ 146 (+1116.67%)
Mutual labels:  taobao
Taobao
2020天猫淘宝双11自动领喵币吸猫脚本(过无障碍防检测)无后门无推广原生Auto.js纯净版
Stars: ✭ 158 (+1216.67%)
Mutual labels:  taobao
three-platformize
一个让 THREE 平台化的项目,目前已适配微信,淘宝,头条小程序,微信小游戏
Stars: ✭ 418 (+3383.33%)
Mutual labels:  taobao
Examples Of Web Crawlers
一些非常有趣的python爬虫例子,对新手比较友好,主要爬取淘宝、天猫、微信、豆瓣、QQ等网站。(Some interesting examples of python crawlers that are friendly to beginners. )
Stars: ✭ 10,724 (+89266.67%)
Mutual labels:  taobao
taobaoke
淘宝客小程序源码
Stars: ✭ 17 (+41.67%)
Mutual labels:  taobao
Nacollector
⚔ 一个采集工具箱,据说是一个用于采集各种 WEB 资源的工作站?!你可以认为这是一个框架,可拓展。淘宝、天猫、苏宁、国美 等电商平台数据采集... 一键邀请 一键打包 账号登录获取Cookie 任务多线程 下载内容管理 实时日志 dll 热更新 无边框窗体 Web App, CefSharp, WebDriver
Stars: ✭ 158 (+1216.67%)
Mutual labels:  taobao
xianyu
一个解锁闲鱼搜索框的Chrome插件!
Stars: ✭ 49 (+308.33%)
Mutual labels:  taobao
Jd Mall Master
一款高仿京东商城的UI,基于MVP的Retrofit2(okhttp3)+rxjava+dagger2+greendao+glide。该项目系仿京东商城,属于独立开发者作品,仅供参考学习,拒绝做一切商业用途,如有侵权,请告知删除
Stars: ✭ 151 (+1158.33%)
Mutual labels:  taobao
Tbify
使用淘宝镜像运行命令: tbify [nvm|npm|npx|yarn|pnpm|...]
Stars: ✭ 153 (+1175%)
Mutual labels:  taobao
DeadPool
该项目是一个使用celery作为主体框架的爬虫应用,能够灵活的添加爬虫任务,并且同时运行多站点的爬虫工作,所有组件都能够原生支持规模并发和分布式,加上celery原生的分布式调用,实现大规模并发。
Stars: ✭ 38 (+216.67%)
Mutual labels:  taobao
Verticalslidefragment
vertical slide to switch to the next fragment page, looks like vertical viewpager
Stars: ✭ 1,615 (+13358.33%)
Mutual labels:  taobao
go-opentaobao
🎉淘宝Api、淘宝开放平台Api请求基础SDK
Stars: ✭ 55 (+358.33%)
Mutual labels:  taobao-sdk
Decryptlogin
APIs for loginning some websites by using requests.
Stars: ✭ 1,861 (+15408.33%)
Mutual labels:  taobao
Alfred Web Search Suggest
Alfred search suggest workflow for various popular websites.
Stars: ✭ 249 (+1975%)
Mutual labels:  taobao
ToolsCollection
No description or website provided.
Stars: ✭ 20 (+66.67%)
Mutual labels:  taobao
cxtkapi
微信小程序版淘客淘点金api对接模块
Stars: ✭ 25 (+108.33%)
Mutual labels:  taobao
chrome-batch-pid
淘宝客工具系列,chrome 插件,批量创建推广位
Stars: ✭ 29 (+141.67%)
Mutual labels:  taobao

taobaogo

淘宝Api、淘宝开放平台Api请求基础SDK

项目迁移至 https://github.com/nilorg/go-opentaobao

淘宝API sign算法

sign算法

Example 🌰

package main

import (
	"fmt"

	 "github.com/dkeng/opentaobao-go"
)

func init() {
	opentaobao.AppKey = ""
	opentaobao.AppSecret = ""
	opentaobao.Router = "http://gw.api.taobao.com/router/rest"
}

func main() {
	res, err := opentaobao.Execute("taobao.tbk.item.get", opentaobao.Parameter{
		"fields": "num_iid,title,pict_url,small_images,reserve_price,zk_final_price,user_type,provcity,item_url,seller_id,volume,nick",
		"q":      "女装",
		"cat":    "16,18",
	})

	if err != nil {
		fmt.Println(err)
	}

	fmt.Println("商品数量:", res.Get("tbk_item_get_response").Get("total_results").MustInt())
	var imtes []interface{}
	imtes, _ = res.Get("tbk_item_get_response").Get("results").Get("n_tbk_item").Array()
	for _, v := range imtes {
		fmt.Println("======")
		item := v.(map[string]interface{})
		fmt.Println("商品名称:", item["title"])
		fmt.Println("商品价格:", item["reserve_price"])
		fmt.Println("商品链接:", item["item_url"])
	}
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].