| 68 | * Configuring twitter account: |
| 69 | ** Sign into https://dev.twitter.com and create an app. (Select an application Type: Client). Put the Callback URL as blank and create your own Twitter application. After creating an app on twitter account, you will be able to see a tab called OAuth tool. |
| 70 | Open eden/models/000_config.py file. Under Twitter Settings, add consumer_key and consumer_secret obtained from the twitter app's OAuth tool. Edit the following lines in 000_config.py |
| 71 | |
| 72 | settings.msg.twitter_oauth_consumer_key = "<consumer key from twitter app>" |
| 73 | settings.msg.twiiter_oauth_consumer_secret = "<consumer_secret from twitter app>" |
| 74 | |
| 75 | * Saving Tweet search results: |
| 76 | ** go to a page eden/msg/twitter_search. You can add keywords / search queries records under this page. It will ask you for a PIN to enter before saving the keywords/queries. The pin is obtained from Twitter app that was created. After saving the keywords/ queries, click on Results which triggers the search and msg_twitter_search_results table in the database gets populated. |
| 77 | |
| 78 | * Displaying twitter feeds onto the GIS map: |