-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
159 lines (87 loc) · 4.59 KB
/
index.html
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html>
<head>
<meta name="generator" content="Hugo 0.54.0" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
Overview – Buffer Developers
</title>
<meta name="description" property="og:description" content="">
<meta name="apple-mobile-web-app-title" content="Buffer Developers">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,900">
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre.min.css">
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre-exp.min.css">
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre-icons.min.css">
<link rel="stylesheet" href="/assets/style.css?v=1552574926">
</head>
<body>
<div class="off-canvas off-canvas-sidebar-show">
<div class="docs-sidebar off-canvas-sidebar">
<a class="docs-brand" href="https://developers.buffer.com/">
<h1 class="docs-brand-title">
Buffer Developers
</h1>
<small class="label text-bold">DEVELOPERS</small>
</a>
<nav class="docs-nav">
<div class="accordion">
<input id="accordion-getting-started" type="checkbox" name="docs-accordion-checkbox" hidden="" checked="checked">
<label class="accordion-header c-hand" for="accordion-getting-started">API</label>
<div class="accordion-body">
<ul class="menu menu-nav">
<li class="menu-item">
<a href="/">
<span>Overview</span>
</a>
</li>
<li class="menu-item">
<a href="/api/authentication/">
<span>Authentication</span>
</a>
</li>
<li class="menu-item">
<a href="/api/user/">
<span>Users</span>
</a>
</li>
<li class="menu-item">
<a href="/api/profiles/">
<span>Profiles</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div role="main" class="docs-content off-canvas-content">
<div>
<h1>Overview</h1>
<blockquote>
<p>As of October 14th, 2019, Buffer no longer supports the registration of new developer applications. Applications created prior to this date will retain access to the Buffer Publish API. Please visit our <a href="https://buffer.com/developers/api/logs">Changelog page</a> for more details.</p>
</blockquote>
<p>The Buffer API provides access to <a href="/api/user">user</a>’s pending and sent <a href="/api/updates">updates</a>, social media <a href="/api/profiles">profiles</a>, <a href="/api/profiles#schedules">scheduled times</a> and more.</p>
<p>To get started, <a href="/developers/apps/create">create an app</a> and <a href="/api/authentication">get an access token</a> for a user.</p>
<h3 id="endpoints">Endpoints</h3>
<p>All currently available endpoints are listed in this documentation. If you have ideas for further things you would like to see in the Buffer API, please contact <a href="mailto:[email protected]">[email protected]</a> - we might build them!</p>
<p>But be sure to set the HTTP Content-Type header to <code>"application/x-www-form-urlencoded"</code> for your requests if you are writing your own client.</p>
<h3 id="rate-limits">Rate Limits</h3>
<p>The Buffer API is rate limited to 60 authenticated requests per user per minute. If you make more than 60 requests within a 60 seconds window period, you will receive a HTTP code 429 response.</p>
<p>If you have a need for a higher rate limit, please get in touch so that we can try and help out.</p>
<h3 id="response-formats">Response Formats</h3>
<p>All requests to the Buffer API must end with the desired response format. Currently the only available response format is JSON and responses are of type application/json.</p>
<p>For well formatted JSON output, add <code>&pretty=true</code> to any request. Very useful for testing in the browser!</p>
<h4 id="example-request">Example Request</h4>
<p><code>GET https://api.bufferapp.com/1/profiles.json?pretty=true</code></p>
<h3 id="questions-problems">Questions & Problems</h3>
<p>If you have any issues using the Buffer API you can contact us by emailing <a href="mailto:[email protected]">[email protected]</a> or give us a shout over on twitter <a href="http://twitter.com/buffer">@buffer</a> - we’ll get back to you fast!</p>
</div>
<div class="">
<span class="text-small text-gray">
</span>
</div>
</div>
</div>
</body>
</html>