Changes between Version 27 and Version 28 of BluePrint/SocialMedia


Ignore:
Timestamp:
10/24/12 01:48:38 (12 years ago)
Author:
sheetal25
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/SocialMedia

    v27 v28  
    6666
    6767==== Searching Tweets ====
     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.
     70Open 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:
    6879
    6980==== Processing Tweets ====