Token Dispenser

Stores email-password pairs, gives out Google Play Store tokens
Alternatives To Token Dispenser
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Google Api Nodejs Client10,836198 hours ago20July 10, 2023176apache-2.0TypeScript
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 Mint2,385
9 months ago12mitHTML
Build your own personal finance analytics using Plaid, Google Sheets and CircleCI.
React Google Login1,7998651958 months ago94January 04, 2021201mitJavaScript
A React Google Login Component
Google Auth Library Nodejs1,54911,6611,0338 hours ago130July 20, 202355apache-2.0TypeScript
🔑 Google Auth Library for Node.js
Nodepress1,286
18 days ago9mitTypeScript
🟢 RESTful API service for https://surmon.me blog, powered by @nestjs
Gplaycli858
2 years ago49March 07, 202027otherPython
Google Play Downloader via Command line
Sketch Map Generator831
2 years ago2mitJavaScript
Sketch plugin to fill a shape with a map generated from a given location using Google Maps and Mapbox
Crack Js596
3 years ago2JavaScript
🕷🎯Python3爬虫项目进阶实战、JS加解密、逆向教程、css 加密、字体加密 - 犀牛数据 | 美团美食 | 企名片 | 七麦数据 | 淘大象 | 梦幻西游藏宝阁 | 国家企业信用信息公示系统 | 漫画柜 | 财联社 | 中国空气质量在线监测分析平台 | 66ip代理 | 零度ip | 中国产品大目录 | JSFuck | 咪咕视频 | 房天下 | 新浪微博 | 新浪二手房 | 极贷助手 | 裁判文书网 | 空中网 | 粉笔网 | 叮当快药 | 58同城 | wallhere | 豆瓣读书 | google 镜像站 | openlaw | X里文学 | 刺猬猫小说 |
Captchaharvester580
4 months ago18May 11, 20217mitPython
Solve captchas yourself without having to pay for services like 2captcha for use in automated projects.
Oauth2l571110 days ago11December 08, 202120apache-2.0Go
oauth2l ("oauth tool") is a simple CLI for interacting with Google API authentication.
Alternatives To Token Dispenser
Select To Compare


Alternative Project Comparisons
Readme

token-dispenser

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.

Building

  1. git clone https://github.com/yeriomin/token-dispenser
  2. cd token-dispenser
  3. Edit src/main/resources/config.properties
  4. mvn install
  5. java -jar target/token-dispenser.jar

Docker image

  1. Run it. docker run --name td -d -t -p 8080:8080 yeriomin/play-store-token-dispenser:latest
  2. Enter container shell. docker exec -it td bash
  3. Edit passwords/passwords.txt and add your email-password pairs. One pair - one line. nano is included in the image.
  4. Exit container shell and restart the container. docker restart td

Configuration

config.properties holds token dispenser's configuration.

Two things are configurable:

  • web server
  • storage

Web server

Token dispenser uses spark framework. To configure network address and port on which spark should listen change spark-host and spark-port.

Storage

There are two storage options supported:

  • Plain text Set 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.
  • MongoDB Set storage to mongodb to use it. Configurable parameters are self-explanatory.

Usage

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]

Credits

Popular Token Projects
Popular Google Projects
Popular Security Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Java
Google
Token
Email
Password
Play Framework
Spark