Difference between revisions of "Onosendai"

From Vague Hope Wiki
Jump to: navigation, search
(SuccessWhale only)
(SuccessWhale only deck.conf)
 
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
 
=== SuccessWhale only deck.conf ===
 
=== SuccessWhale only deck.conf ===
 +
 +
Changes you needed to make before using this:
 +
* Fill in SuccessWhale username and password.
 +
* Replace all '1234567890' with you Twitter account number.
 +
* Replace all '9876543210' with your Facebook account number.
 +
* Check the background refresh intervals are as you want them.
  
 
<pre>
 
<pre>
Line 19: Line 25:
 
       "account": "sw0",
 
       "account": "sw0",
 
       "resource": "twitter/1234567890/statuses/home_timeline",
 
       "resource": "twitter/1234567890/statuses/home_timeline",
       "refresh": "30min",
+
       "refresh": "30min"
      "notify": true
+
 
     }, {
 
     }, {
 
       "id": 2,
 
       "id": 2,
 
       "title": "Mentions and Me",
 
       "title": "Mentions and Me",
 
       "account": "sw0",
 
       "account": "sw0",
       "resource": "twitter/12345678/statuses/mentions:twitter/12345678/statuses/user_timeline",
+
       "resource": "twitter/1234567890/statuses/mentions:twitter/1234567890/statuses/user_timeline",
 
       "refresh": "30min",
 
       "refresh": "30min",
 
       "notify": true
 
       "notify": true
Line 32: Line 37:
 
       "title": "Facebook Home",
 
       "title": "Facebook Home",
 
       "account": "sw0",
 
       "account": "sw0",
       "resource": "facebook/123456789/me/home",
+
       "resource": "facebook/9876543210/me/home",
 
       "refresh": "30min"
 
       "refresh": "30min"
 
     }, {
 
     }, {

Latest revision as of 02:51, 13 May 2013

Sample Configs

SuccessWhale only deck.conf

Changes you needed to make before using this:

  • Fill in SuccessWhale username and password.
  • Replace all '1234567890' with you Twitter account number.
  • Replace all '9876543210' with your Facebook account number.
  • Check the background refresh intervals are as you want them.
{
  "accounts": [
    {
      "id": "sw0",
      "provider": "successwhale",
      "username": "?username?",
      "password": "?password?"
    }
  ],
  "feeds": [
    {
      "id": 1,
      "title": "Timeline",
      "account": "sw0",
      "resource": "twitter/1234567890/statuses/home_timeline",
      "refresh": "30min"
    }, {
      "id": 2,
      "title": "Mentions and Me",
      "account": "sw0",
      "resource": "twitter/1234567890/statuses/mentions:twitter/1234567890/statuses/user_timeline",
      "refresh": "30min",
      "notify": true
    }, {
      "id": 3,
      "title": "Facebook Home",
      "account": "sw0",
      "resource": "facebook/9876543210/me/home",
      "refresh": "30min"
    }, {
      "id": 4,
      "title": "Read Later",
      "resource": "later"
    }
  ]
}