-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.xml
54 lines (45 loc) · 3.92 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Overview on Buffer Developers</title>
<link>https://developers.buffer.com/</link>
<description>Recent content in Overview on Buffer Developers</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<atom:link href="https://developers.buffer.com/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Authentication</title>
<link>https://developers.buffer.com/api/authentication/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://developers.buffer.com/api/authentication/</guid>
<description>Authentication with Buffer is the first step in building your app.
Buffer is an OAuth 2.0 provider. We recommend using one of the many great OAuth 2.0 libraries to do the heavy lifting!
Getting Started All of the Buffer API endpoints require authentication. To get an access_token you must first register an application here. Once you have registered an app follow the steps below to gain authorized access to a users account.</description>
</item>
<item>
<title>Users</title>
<link>https://developers.buffer.com/api/user/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://developers.buffer.com/api/user/</guid>
<description> A user represents a single Buffer user account.
Get /user
Post /user/deauthorize
GET /user Returns a single user.
Example Request GET https://api.bufferapp.com/1/user.json { &quot;_id&quot;:&quot;4f0c0a06512f7ef214000000&quot;, &quot;activity_at&quot;:1343654640, &quot;created_at&quot;:1326189062, &quot;id&quot;:&quot;4f0c0a06512f7ef214000000&quot;, &quot;plan&quot;:&quot;free&quot;, &quot;timezone&quot;:&quot;Asia/Tel_Aviv&quot; } POST /user/deauthorize Deauthorize your client for the user.
Example Request POST https://api.bufferapp.com/1/user/deauthorize.json { &quot;success&quot;: true, &quot;message&quot;: &quot;Access successfully revoked!&quot; } </description>
</item>
<item>
<title>Profiles</title>
<link>https://developers.buffer.com/api/profiles/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://developers.buffer.com/api/profiles/</guid>
<description>A Buffer profile represents a connection to a single social media account.
Get /profiles
/profiles/:id
/profiles/:id/schedules
Post /profiles/:id/schedules/update
GET /profiles Returns an array of social media profiles connected to a users account.
Example Request GET https://api.bufferapp.com/1/profiles.json [ { &quot;avatar&quot; : &quot;http://a3.twimg.com/profile_images/1405180232.png&quot;, &quot;created_at&quot; : 1320703028, &quot;default&quot; : true, &quot;formatted_username&quot; : &quot;@skinnyoteam&quot;, &quot;id&quot; : &quot;4eb854340acb04e870000010&quot;, &quot;schedules&quot; : [{ &quot;days&quot; : [ &quot;mon&quot;, &quot;tue&quot;, &quot;wed&quot;, &quot;thu&quot;, &quot;fri&quot; ], &quot;times&quot; : [ &quot;12:00&quot;, &quot;17:00&quot;, &quot;18:00&quot; ] }], &quot;service&quot; : &quot;twitter&quot;, &quot;service_id&quot; : &quot;164724445&quot;, &quot;service_username&quot; : &quot;skinnyoteam&quot;, &quot;statistics&quot; : { &quot;followers&quot; : 246 }, &quot;team_members&quot; : [ &quot;4eb867340acb04e670000001&quot; ], &quot;timezone&quot; : &quot;Europe/London&quot;, &quot;user_id&quot; : &quot;4eb854340acb04e870000010&quot; }, { .</description>
</item>
</channel>
</rss>