diff --git a/docs/classmastodonpp_1_1Instance_1_1ObtainToken.html b/docs/classmastodonpp_1_1Instance_1_1ObtainToken.html
index b6132d0..dc569bd 100644
--- a/docs/classmastodonpp_1_1Instance_1_1ObtainToken.html
+++ b/docs/classmastodonpp_1_1Instance_1_1ObtainToken.html
@@ -284,7 +284,7 @@ Additional Inherited Members
Creates a token via /oauth/token
.
The body
of the returned answer contains only the access token, not the whole JSON response.
-The access token will be set in the parent Instance.
+The access token will be set in the Instance you initialized ObtainToken with.
- Parameters
-
code | The authorization code you got from the user. |
diff --git a/docs/instance_8hpp_source.html b/docs/instance_8hpp_source.html
index 2cceded..5372b07 100644
--- a/docs/instance_8hpp_source.html
+++ b/docs/instance_8hpp_source.html
@@ -187,31 +187,31 @@ $(function() {
268 answer_type
step_1(string_view client_name, string_view scopes,
269 string_view website);
-
- 286 answer_type
step_2(string_view code);
-
-
-
- 290 const string _baseuri;
-
-
- 293 string _client_secret;
-
-
-
- 297 const string _hostname;
- 298 const string _baseuri;
- 299 string _access_token;
-
-
- 302 vector<string> _post_formats;
-
-
-
-
-
-
- 309 #endif // MASTODONPP_INSTANCE_HPP
+
+ 287 answer_type
step_2(string_view code);
+
+
+
+ 291 const string _baseuri;
+
+
+ 294 string _client_secret;
+
+
+
+ 298 const string _hostname;
+ 299 const string _baseuri;
+ 300 string _access_token;
+
+
+ 303 vector<string> _post_formats;
+
+
+
+
+
+
+ 310 #endif // MASTODONPP_INSTANCE_HPP
Simplifies obtaining an OAuth 2.0 Bearer Access Token.
Definition: instance.hpp:236
answer_type get_nodeinfo()
Returns the NodeInfo of the instance.