Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Google Api Nodejs Client | 10,836 | 19 | 8 hours ago | 20 | July 10, 2023 | 176 | apache-2.0 | TypeScript | ||
Google's officially supported Node.js client library for accessing Google APIs. Support for authorization and authentication with OAuth 2.0, API Keys and JWT (Service Tokens) is included. | ||||||||||
Build Your Own Mint | 2,385 | 9 months ago | 12 | mit | HTML | |||||
Build your own personal finance analytics using Plaid, Google Sheets and CircleCI. | ||||||||||
React Google Login | 1,799 | 865 | 195 | 8 months ago | 94 | January 04, 2021 | 201 | mit | JavaScript | |
A React Google Login Component | ||||||||||
Google Auth Library Nodejs | 1,549 | 11,661 | 1,033 | 8 hours ago | 130 | July 20, 2023 | 55 | apache-2.0 | TypeScript | |
🔑 Google Auth Library for Node.js | ||||||||||
Nodepress | 1,286 | 18 days ago | 9 | mit | TypeScript | |||||
🟢 RESTful API service for https://surmon.me blog, powered by @nestjs | ||||||||||
Gplaycli | 858 | 2 years ago | 49 | March 07, 2020 | 27 | other | Python | |||
Google Play Downloader via Command line | ||||||||||
Sketch Map Generator | 831 | 2 years ago | 2 | mit | JavaScript | |||||
Sketch plugin to fill a shape with a map generated from a given location using Google Maps and Mapbox | ||||||||||
Crack Js | 596 | 3 years ago | 2 | JavaScript | ||||||
🕷🎯Python3爬虫项目进阶实战、JS加解密、逆向教程、css 加密、字体加密 - 犀牛数据 | 美团美食 | 企名片 | 七麦数据 | 淘大象 | 梦幻西游藏宝阁 | 国家企业信用信息公示系统 | 漫画柜 | 财联社 | 中国空气质量在线监测分析平台 | 66ip代理 | 零度ip | 中国产品大目录 | JSFuck | 咪咕视频 | 房天下 | 新浪微博 | 新浪二手房 | 极贷助手 | 裁判文书网 | 空中网 | 粉笔网 | 叮当快药 | 58同城 | wallhere | 豆瓣读书 | google 镜像站 | openlaw | X里文学 | 刺猬猫小说 | | ||||||||||
Captchaharvester | 580 | 4 months ago | 18 | May 11, 2021 | 7 | mit | Python | |||
Solve captchas yourself without having to pay for services like 2captcha for use in automated projects. | ||||||||||
Oauth2l | 571 | 1 | 10 days ago | 11 | December 08, 2021 | 20 | apache-2.0 | Go | ||
oauth2l ("oauth tool") is a simple CLI for interacting with Google API authentication. |
Stores email-password pairs, gives out Google Play Store tokens.
Using Google Play Store API requires logging in using email and password. If you have a project which works with Google Play Store API you no longer have to make the users use their live accounts or ship your software with your account credentials inside. You can deploy a token dispenser instance and it will provide auth tokens on demand without letting the world know your password.
git clone https://github.com/yeriomin/token-dispenser
cd token-dispenser
src/main/resources/config.properties
mvn install
java -jar target/token-dispenser.jar
docker run --name td -d -t -p 8080:8080 yeriomin/play-store-token-dispenser:latest
docker exec -it td bash
passwords/passwords.txt
and add your email-password pairs. One pair - one line. nano
is included in the image.docker restart td
config.properties holds token dispenser's configuration.
Two things are configurable:
Token dispenser uses spark framework. To configure network address and port on which spark should listen change spark-host
and spark-port
.
There are two storage options supported:
storage
to plaintext
to use it. storage-plaintext-path
property is used to store filesystem path to a plain text file with email-password pairs. There is an example here. Securing it is up to you.storage
to mongodb
to use it. Configurable parameters are self-explanatory.Once server is configured, you can get the tokens for regular requests at http://server-address:port/token/email/[email protected] and tokens for checkin requests at http://server-address:port/token-ac2dm/email/[email protected]