Using OAuth2.0 and Retrofit to talk to the GitHub api on Android

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. Clicker

    A Twitch Android client built with moderators in mind. Join the subreddit to voice your ideas, questions and concerns. Link to app on Google Play store below. Next update is 2024-12-02 (by thePlebDev)

    GitHub

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. Retrofit

    A type-safe HTTP client for Android and the JVM

    This particular blog post will be us building on the information from the previous blog post and using the authorization code from the GitHub OAuth API in combination with Retrofit. To finally get a access token, which allows us to make requests to the API on a behalf of a user.

  4. Puts Debuggerer

    Ruby library for improved puts debugging, automatically displaying bonus useful information such as source line number and source code.

    object RetrofitInstance { private val retrofits by lazy{ Retrofit.Builder() .baseUrl("https://github.com/") .addConverterFactory(GsonConverterFactory.create()) .build() } val api:GitHubClient by lazy { retrofits.create(GitHubClient::class.java) } }

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Best cloud sync software for media production?

    4 projects | /r/DataHoarder | 29 Mar 2023
  • Best Option for Sharing a Folder of Code with Other People?

    2 projects | /r/Ubuntu | 1 Mar 2021
  • Using Retrofit Interceptors to check network connection in Android and testing it

    2 projects | dev.to | 23 Jan 2024
  • Lets make a Twitch Android app. Part 1. App access tokens

    1 project | dev.to | 16 Jul 2023
  • Show HN: Turn Your APIs into Swift Protocols

    2 projects | news.ycombinator.com | 20 Jun 2023

Did you know that Java is
the 8th most popular programming language
based on number of references?