Skip to content

Commit

Permalink
API secrets was removed and added information on README.
Browse files Browse the repository at this point in the history
  • Loading branch information
klassmann committed May 17, 2018
1 parent 11d8458 commit b39ac11
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
## About
This project shows a map of a neighborhood and its sights that I want to visit. The main goal is building a mashup between google maps and other services like foursquare, providing a useful map and information about the place.

**Note: The client secrets and ids changed.**
If you clone this repository create your own ids and secrets at [Google](https://console.developers.google.com/apis/credentials) and [Foursquare](https://developer.foursquare.com/).


<a name="features"></a>
## Features
- [x] Google Maps API
Expand Down
2 changes: 1 addition & 1 deletion src/Container.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@ export class Container extends React.Component {
}

export default GoogleApiComponent({
apiKey: 'AIzaSyByqKr-2MZzqs92Ax5FhiXbDwq39d7ulog'
apiKey: ''
})(Container);
4 changes: 2 additions & 2 deletions src/providers/Foursquare.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@


const URL = 'https://api.foursquare.com/v2/';
const CLIENT_ID = '2W4RQXDZQKCQPKKZ1TSAU2V5FR5HDCIJ1UWEDIQW5E1MFJGP';
const CLIENT_SECRET = 'MTWIJOF2XGMSIQEBMKBXWCRLXDEJJ2OZR55Q2UZO50GBX31I';
const CLIENT_ID = '';
const CLIENT_SECRET = '';

const headers = {
'Accept': 'application/json',
Expand Down

0 comments on commit b39ac11

Please sign in to comment.