Skip to content

Commit 10f1f11

Browse files
committed
Move secrets to an apikey.properties file.
Let's stop checking in Twitter keys into GitHub. :)
1 parent 86d4695 commit 10f1f11

File tree

6 files changed

+27
-9
lines changed

6 files changed

+27
-9
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,5 @@ local.properties
6363
.idea
6464
build
6565
import-summary.txt
66+
67+
apikey.properties

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ android:
1010
before_install:
1111
- yes | sdkmanager "platforms;android-28"
1212
script:
13+
- "cp apikey.properties.example apikey.properties"
1314
- "./gradlew build check --daemon"
1415
after_failure: "cat $TRAVIS_BUILD_DIR/app/build/outputs/lint-results-debug.xml"

README.md

+14-7
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,26 @@ The following libraries are used to make this possible:
2222

2323
### 1. Configure the REST client
2424

25-
Open `src/com.codepath.apps.restclienttemplate/RestClient.java`. Configure the `REST_API_INSTANCE`, `REST_URL`, `REST_CONSUMER_KEY`, `REST_CONSUMER_SECRET` based on the values needed to connect to your particular API. The `REST_URL` should be the base URL used for connecting to the API (i.e `https://api.twitter.com`). The `REST_API_INSTANCE` should be the class defining the service you wish to connect to. Check out the [full list of services](https://github.com/scribejava/scribejava/tree/master/scribejava-apis/src/main/java/com/github/scribejava/apis) you can select (i.e `FlickrApi.instance()`).
26-
25+
Open `src/com.codepath.apps.restclienttemplate/RestClient.java`. Configure the `REST_API_INSTANCE` and`REST_URL`.
26+
2727
For example if I wanted to connect to Twitter:
2828

2929
```java
3030
// RestClient.java
3131
public class RestClient extends OAuthBaseClient {
3232
public static final BaseApi REST_API_INSTANCE = TwitterApi.instance();
3333
public static final String REST_URL = "https://api.twitter.com/1.1";
34-
public static final String REST_CONSUMER_KEY = "57fdgdfh345195e071f9a761d763ca0";
35-
public static final String REST_CONSUMER_SECRET = "d657sdsg34435435";
34+
public static final String REST_CONSUMER_KEY = BuildConfig.CONSUMER_KEY; // Change this inside apikey.properties
35+
public static final String REST_CONSUMER_SECRET = BuildConfig.CONSUMER_SECRET; // Change this inside apikey.properties
3636
// ...constructor and endpoints
3737
}
3838
```
3939

40+
Rename the `apikey.properties.example` file to `apikey.properties`. Replace the `CONSUMER_KEY` and `CONSUMER_SECRET` to the values specified in the Twitter console:
41+
42+
CONSUMER_KEY="adsflfajsdlfdsajlafdsjl"
43+
CONSUMER_SECRET="afdsljkasdflkjsd"
44+
4045
Next, change the `intent_scheme` and `intent_host` in `strings.xml` to a unique name that is special for this application.
4146
This is used for the OAuth authentication flow for launching the app through web pages through an [Android intent](https://developer.chrome.com/multidevice/android/intents).
4247

@@ -393,11 +398,13 @@ Change `REST_URL` to use the Google API:
393398
public static final String REST_URL = "https://www.googleapis.com/calendar/v3"; // Change this, base API URL
394399
```
395400
396-
The consumer and secret keys should be retrieved via [the credentials section](https://console.developers.google.com/apis/credentials) in the Google developer console You will need to create an OAuth2 client ID and client secret:
401+
The consumer and secret keys should be retrieved via [the credentials section](https://console.developers.google.com/apis/credentials) in the Google developer console You will need to create an OAuth2 client ID and client secret.
402+
403+
Create a file called `apikey.properties`:
397404
398405
```java
399-
public static final String REST_CONSUMER_KEY = "XXX-XXX.apps.googleusercontent.com"; // Change this
400-
public static final String REST_CONSUMER_SECRET = "XX-XXXXXXX"; // Change this
406+
REST_CONSUMER_KEY="XXX-XXX.apps.googleusercontent.com"
407+
REST_CONSUMER_SECRET="XX-XXXXXXX"
401408
```
402409
403410
The OAuth2 scopes should be used according to the ones defined in [the OAuth2 scopes](https://developers.google.com/identity/protocols/googlescopes):

apikey.properties.example

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CONSUMER_KEY="paste-here"
2+
CONSUMER_SECRET="here-too"

app/build.gradle

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
apply plugin: 'com.android.application'
22

3+
def apikeyPropertiesFile = rootProject.file("apikey.properties")
4+
def apikeyProperties = new Properties()
5+
apikeyProperties.load(new FileInputStream(apikeyPropertiesFile))
6+
37
android {
48
compileSdkVersion 28
59

@@ -14,6 +18,8 @@ android {
1418
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
1519
}
1620
}
21+
buildConfigField("String", "CONSUMER_KEY", apikeyProperties['CONSUMER_KEY'])
22+
buildConfigField("String", "CONSUMER_SECRET", apikeyProperties['CONSUMER_SECRET'])
1723
}
1824

1925
// Related to https://github.com/scribejava/scribejava/issues/480

app/src/main/java/com/codepath/apps/restclienttemplate/RestClient.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
public class RestClient extends OAuthBaseClient {
2424
public static final BaseApi REST_API_INSTANCE = FlickrApi.instance(FlickrApi.FlickrPerm.WRITE); // Change this
2525
public static final String REST_URL = "https://api.flickr.com/services"; // Change this, base API URL
26-
public static final String REST_CONSUMER_KEY = "SOME_KEY"; // Change this
27-
public static final String REST_CONSUMER_SECRET = "SOME_SECRET"; // Change this
26+
public static final String REST_CONSUMER_KEY = BuildConfig.CONSUMER_KEY; // Change this inside apikey.properties
27+
public static final String REST_CONSUMER_SECRET = BuildConfig.CONSUMER_SECRET; // Change this inside apikey.properties
2828

2929
// Landing page to indicate the OAuth flow worked in case Chrome for Android 25+ blocks navigation back to the app.
3030
public static final String FALLBACK_URL = "https://codepath.github.io/android-rest-client-template/success.html";

0 commit comments

Comments
 (0)