auth0-ruby 0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.bundle/config +2 -0
- data/.gitignore +8 -0
- data/.rspec +2 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +68 -0
- data/README.md +27 -0
- data/Rakefile +9 -0
- data/auth0.gemspec +29 -0
- data/doc/Auth0.html +153 -0
- data/doc/Auth0/Api.html +128 -0
- data/doc/Auth0/Api/AuthenticationEndpoints.html +596 -0
- data/doc/Auth0/Api/V1.html +192 -0
- data/doc/Auth0/Api/V1/Clients.html +440 -0
- data/doc/Auth0/Api/V1/Connections.html +506 -0
- data/doc/Auth0/Api/V1/Logs.html +366 -0
- data/doc/Auth0/Api/V1/Rules.html +439 -0
- data/doc/Auth0/Api/V1/Users.html +1617 -0
- data/doc/Auth0/BadRequest.html +142 -0
- data/doc/Auth0/Client.html +236 -0
- data/doc/Auth0/Exception.html +140 -0
- data/doc/Auth0/Mixins.html +225 -0
- data/doc/Auth0/Mixins/HTTPartyProxy.html +121 -0
- data/doc/Auth0/Mixins/Initializer.html +298 -0
- data/doc/Auth0/NotFound.html +143 -0
- data/doc/Auth0/ServerError.html +142 -0
- data/doc/Auth0/Unauthorized.html +143 -0
- data/doc/Auth0/Unsupported.html +142 -0
- data/doc/Auth0/UserIdIsBlank.html +143 -0
- data/doc/Auth0Client.html +235 -0
- data/doc/_index.html +347 -0
- data/doc/class_list.html +58 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +57 -0
- data/doc/css/style.css +339 -0
- data/doc/file.README.html +103 -0
- data/doc/file_list.html +60 -0
- data/doc/frames.html +26 -0
- data/doc/index.html +103 -0
- data/doc/js/app.js +219 -0
- data/doc/js/full_list.js +181 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +327 -0
- data/doc/top-level-namespace.html +114 -0
- data/lib/auth0.rb +8 -0
- data/lib/auth0/api/authentication_endpoints.rb +71 -0
- data/lib/auth0/api/v1.rb +19 -0
- data/lib/auth0/api/v1/clients.rb +48 -0
- data/lib/auth0/api/v1/connections.rb +51 -0
- data/lib/auth0/api/v1/logs.rb +41 -0
- data/lib/auth0/api/v1/rules.rb +44 -0
- data/lib/auth0/api/v1/users.rb +163 -0
- data/lib/auth0/client.rb +7 -0
- data/lib/auth0/exception.rb +18 -0
- data/lib/auth0/mixins.rb +13 -0
- data/lib/auth0/mixins/httparty_proxy.rb +29 -0
- data/lib/auth0/mixins/initializer.rb +25 -0
- data/lib/auth0/version.rb +4 -0
- data/lib/auth0_client.rb +3 -0
- data/spec/lib/auth0/api/authentication_endpoints_spec.rb +56 -0
- data/spec/lib/auth0/api/v1/clients_spec.rb +62 -0
- data/spec/lib/auth0/api/v1/connections_spec.rb +62 -0
- data/spec/lib/auth0/api/v1/logs_spec.rb +46 -0
- data/spec/lib/auth0/api/v1/rules_spec.rb +40 -0
- data/spec/lib/auth0/api/v1/users_spec.rb +215 -0
- data/spec/lib/auth0/client_spec.rb +19 -0
- data/spec/lib/auth0/mixins/httparty_proxy_spec.rb +60 -0
- data/spec/lib/auth0_client_spec.rb +8 -0
- data/spec/spec_helper.rb +18 -0
- data/spec/support/dummy_class.rb +7 -0
- data/spec/support/dummy_class_for_proxy.rb +4 -0
- data/spec/support/stub_response.rb +2 -0
- metadata +253 -0
@@ -0,0 +1,143 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>
|
7
|
+
Exception: Auth0::UserIdIsBlank
|
8
|
+
|
9
|
+
— Documentation by YARD 0.8.7.6
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8" />
|
16
|
+
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
18
|
+
hasFrames = window.top.frames.main ? true : false;
|
19
|
+
relpath = '../';
|
20
|
+
framesUrl = "../frames.html#!Auth0/UserIdIsBlank.html";
|
21
|
+
</script>
|
22
|
+
|
23
|
+
|
24
|
+
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
|
25
|
+
|
26
|
+
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
|
27
|
+
|
28
|
+
|
29
|
+
</head>
|
30
|
+
<body>
|
31
|
+
<div id="header">
|
32
|
+
<div id="menu">
|
33
|
+
|
34
|
+
<a href="../_index.html">Index (U)</a> »
|
35
|
+
<span class='title'><span class='object_link'><a href="../Auth0.html" title="Auth0 (module)">Auth0</a></span></span>
|
36
|
+
»
|
37
|
+
<span class="title">UserIdIsBlank</span>
|
38
|
+
|
39
|
+
|
40
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
41
|
+
</div>
|
42
|
+
|
43
|
+
<div id="search">
|
44
|
+
|
45
|
+
<a class="full_list_link" id="class_list_link"
|
46
|
+
href="../class_list.html">
|
47
|
+
Class List
|
48
|
+
</a>
|
49
|
+
|
50
|
+
<a class="full_list_link" id="method_list_link"
|
51
|
+
href="../method_list.html">
|
52
|
+
Method List
|
53
|
+
</a>
|
54
|
+
|
55
|
+
<a class="full_list_link" id="file_list_link"
|
56
|
+
href="../file_list.html">
|
57
|
+
File List
|
58
|
+
</a>
|
59
|
+
|
60
|
+
</div>
|
61
|
+
<div class="clear"></div>
|
62
|
+
</div>
|
63
|
+
|
64
|
+
<iframe id="search_frame"></iframe>
|
65
|
+
|
66
|
+
<div id="content"><h1>Exception: Auth0::UserIdIsBlank
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
</h1>
|
71
|
+
|
72
|
+
<dl class="box">
|
73
|
+
|
74
|
+
<dt class="r1">Inherits:</dt>
|
75
|
+
<dd class="r1">
|
76
|
+
<span class="inheritName"><span class='object_link'><a href="Exception.html" title="Auth0::Exception (class)">Exception</a></span></span>
|
77
|
+
|
78
|
+
<ul class="fullTree">
|
79
|
+
<li>Object</li>
|
80
|
+
|
81
|
+
<li class="next">StandardError</li>
|
82
|
+
|
83
|
+
<li class="next"><span class='object_link'><a href="Exception.html" title="Auth0::Exception (class)">Exception</a></span></li>
|
84
|
+
|
85
|
+
<li class="next">Auth0::UserIdIsBlank</li>
|
86
|
+
|
87
|
+
</ul>
|
88
|
+
<a href="#" class="inheritanceTree">show all</a>
|
89
|
+
|
90
|
+
</dd>
|
91
|
+
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
<dt class="r2 last">Defined in:</dt>
|
101
|
+
<dd class="r2 last">lib/auth0/exception.rb</dd>
|
102
|
+
|
103
|
+
</dl>
|
104
|
+
<div class="clear"></div>
|
105
|
+
|
106
|
+
<h2>Overview</h2><div class="docstring">
|
107
|
+
<div class="discussion">
|
108
|
+
|
109
|
+
<p>exception for unset user_id, this might cause removal of all users, or
|
110
|
+
other unexpected bahaviour</p>
|
111
|
+
|
112
|
+
|
113
|
+
</div>
|
114
|
+
</div>
|
115
|
+
<div class="tags">
|
116
|
+
|
117
|
+
|
118
|
+
</div>
|
119
|
+
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
</div>
|
135
|
+
|
136
|
+
<div id="footer">
|
137
|
+
Generated on Mon Jan 26 03:18:47 2015 by
|
138
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
139
|
+
0.8.7.6 (ruby-2.0.0).
|
140
|
+
</div>
|
141
|
+
|
142
|
+
</body>
|
143
|
+
</html>
|
@@ -0,0 +1,235 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>
|
7
|
+
Class: Auth0Client
|
8
|
+
|
9
|
+
— Documentation by YARD 0.8.7.6
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
16
|
+
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
18
|
+
hasFrames = window.top.frames.main ? true : false;
|
19
|
+
relpath = '';
|
20
|
+
framesUrl = "frames.html#!Auth0Client.html";
|
21
|
+
</script>
|
22
|
+
|
23
|
+
|
24
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
25
|
+
|
26
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
27
|
+
|
28
|
+
|
29
|
+
</head>
|
30
|
+
<body>
|
31
|
+
<div id="header">
|
32
|
+
<div id="menu">
|
33
|
+
|
34
|
+
<a href="_index.html">Index (A)</a> »
|
35
|
+
|
36
|
+
|
37
|
+
<span class="title">Auth0Client</span>
|
38
|
+
|
39
|
+
|
40
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
41
|
+
</div>
|
42
|
+
|
43
|
+
<div id="search">
|
44
|
+
|
45
|
+
<a class="full_list_link" id="class_list_link"
|
46
|
+
href="class_list.html">
|
47
|
+
Class List
|
48
|
+
</a>
|
49
|
+
|
50
|
+
<a class="full_list_link" id="method_list_link"
|
51
|
+
href="method_list.html">
|
52
|
+
Method List
|
53
|
+
</a>
|
54
|
+
|
55
|
+
<a class="full_list_link" id="file_list_link"
|
56
|
+
href="file_list.html">
|
57
|
+
File List
|
58
|
+
</a>
|
59
|
+
|
60
|
+
</div>
|
61
|
+
<div class="clear"></div>
|
62
|
+
</div>
|
63
|
+
|
64
|
+
<iframe id="search_frame"></iframe>
|
65
|
+
|
66
|
+
<div id="content"><h1>Class: Auth0Client
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
</h1>
|
71
|
+
|
72
|
+
<dl class="box">
|
73
|
+
|
74
|
+
<dt class="r1">Inherits:</dt>
|
75
|
+
<dd class="r1">
|
76
|
+
<span class="inheritName"><span class='object_link'><a href="Auth0/Client.html" title="Auth0::Client (class)">Auth0::Client</a></span></span>
|
77
|
+
|
78
|
+
<ul class="fullTree">
|
79
|
+
<li>Object</li>
|
80
|
+
|
81
|
+
<li class="next"><span class='object_link'><a href="Auth0/Client.html" title="Auth0::Client (class)">Auth0::Client</a></span></li>
|
82
|
+
|
83
|
+
<li class="next">Auth0Client</li>
|
84
|
+
|
85
|
+
</ul>
|
86
|
+
<a href="#" class="inheritanceTree">show all</a>
|
87
|
+
|
88
|
+
</dd>
|
89
|
+
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
<dt class="r2 last">Defined in:</dt>
|
99
|
+
<dd class="r2 last">lib/auth0_client.rb</dd>
|
100
|
+
|
101
|
+
</dl>
|
102
|
+
<div class="clear"></div>
|
103
|
+
|
104
|
+
<h2>Overview</h2><div class="docstring">
|
105
|
+
<div class="discussion">
|
106
|
+
|
107
|
+
<p>This class is made for backward compatibility of gem</p>
|
108
|
+
|
109
|
+
|
110
|
+
</div>
|
111
|
+
</div>
|
112
|
+
<div class="tags">
|
113
|
+
|
114
|
+
|
115
|
+
</div>
|
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
|
+
<h2>Method Summary</h2>
|
149
|
+
|
150
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Auth0/Api/V1/Logs.html" title="Auth0::Api::V1::Logs (module)">Auth0::Api::V1::Logs</a></span></h3>
|
151
|
+
<p class="inherited"><span class='object_link'><a href="Auth0/Api/V1/Logs.html#log-instance_method" title="Auth0::Api::V1::Logs#log (method)">#log</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Logs.html#logs-instance_method" title="Auth0::Api::V1::Logs#logs (method)">#logs</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Logs.html#user_logs-instance_method" title="Auth0::Api::V1::Logs#user_logs (method)">#user_logs</a></span></p>
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Auth0/Api/V1/Rules.html" title="Auth0::Api::V1::Rules (module)">Auth0::Api::V1::Rules</a></span></h3>
|
162
|
+
<p class="inherited"><span class='object_link'><a href="Auth0/Api/V1/Rules.html#create_rule-instance_method" title="Auth0::Api::V1::Rules#create_rule (method)">#create_rule</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Rules.html#delete_rule-instance_method" title="Auth0::Api::V1::Rules#delete_rule (method)">#delete_rule</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Rules.html#rules-instance_method" title="Auth0::Api::V1::Rules#rules (method)">#rules</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Rules.html#update_rule-instance_method" title="Auth0::Api::V1::Rules#update_rule (method)">#update_rule</a></span></p>
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
|
172
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Auth0/Api/V1/Clients.html" title="Auth0::Api::V1::Clients (module)">Auth0::Api::V1::Clients</a></span></h3>
|
173
|
+
<p class="inherited"><span class='object_link'><a href="Auth0/Api/V1/Clients.html#clients-instance_method" title="Auth0::Api::V1::Clients#clients (method)">#clients</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Clients.html#create_client-instance_method" title="Auth0::Api::V1::Clients#create_client (method)">#create_client</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Clients.html#patch_client-instance_method" title="Auth0::Api::V1::Clients#patch_client (method)">#patch_client</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Clients.html#update_client-instance_method" title="Auth0::Api::V1::Clients#update_client (method)">#update_client</a></span></p>
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
|
180
|
+
|
181
|
+
|
182
|
+
|
183
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Auth0/Api/V1/Connections.html" title="Auth0::Api::V1::Connections (module)">Auth0::Api::V1::Connections</a></span></h3>
|
184
|
+
<p class="inherited"><span class='object_link'><a href="Auth0/Api/V1/Connections.html#connection-instance_method" title="Auth0::Api::V1::Connections#connection (method)">#connection</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Connections.html#connections-instance_method" title="Auth0::Api::V1::Connections#connections (method)">#connections</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Connections.html#create_connection-instance_method" title="Auth0::Api::V1::Connections#create_connection (method)">#create_connection</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Connections.html#delete_connection-instance_method" title="Auth0::Api::V1::Connections#delete_connection (method)">#delete_connection</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Connections.html#update_connection-instance_method" title="Auth0::Api::V1::Connections#update_connection (method)">#update_connection</a></span></p>
|
185
|
+
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
|
194
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Auth0/Api/V1/Users.html" title="Auth0::Api::V1::Users (module)">Auth0::Api::V1::Users</a></span></h3>
|
195
|
+
<p class="inherited"><span class='object_link'><a href="Auth0/Api/V1/Users.html#change_password_ticket-instance_method" title="Auth0::Api::V1::Users#change_password_ticket (method)">#change_password_ticket</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#client_users-instance_method" title="Auth0::Api::V1::Users#client_users (method)">#client_users</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#connection_users-instance_method" title="Auth0::Api::V1::Users#connection_users (method)">#connection_users</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#create_public_key-instance_method" title="Auth0::Api::V1::Users#create_public_key (method)">#create_public_key</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#create_user-instance_method" title="Auth0::Api::V1::Users#create_user (method)">#create_user</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#delete_user-instance_method" title="Auth0::Api::V1::Users#delete_user (method)">#delete_user</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#delete_users-instance_method" title="Auth0::Api::V1::Users#delete_users (method)">#delete_users</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#enterpriseconnections_users-instance_method" title="Auth0::Api::V1::Users#enterpriseconnections_users (method)">#enterpriseconnections_users</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#patch_user_metadata-instance_method" title="Auth0::Api::V1::Users#patch_user_metadata (method)">#patch_user_metadata</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#revoke_user_device_public_key-instance_method" title="Auth0::Api::V1::Users#revoke_user_device_public_key (method)">#revoke_user_device_public_key</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#revoke_user_refresh_token-instance_method" title="Auth0::Api::V1::Users#revoke_user_refresh_token (method)">#revoke_user_refresh_token</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#send_verification_email-instance_method" title="Auth0::Api::V1::Users#send_verification_email (method)">#send_verification_email</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#socialconnections_users-instance_method" title="Auth0::Api::V1::Users#socialconnections_users (method)">#socialconnections_users</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#update_user_email-instance_method" title="Auth0::Api::V1::Users#update_user_email (method)">#update_user_email</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#update_user_metadata-instance_method" title="Auth0::Api::V1::Users#update_user_metadata (method)">#update_user_metadata</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#update_user_password-instance_method" title="Auth0::Api::V1::Users#update_user_password (method)">#update_user_password</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#update_user_password_using_email-instance_method" title="Auth0::Api::V1::Users#update_user_password_using_email (method)">#update_user_password_using_email</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#user-instance_method" title="Auth0::Api::V1::Users#user (method)">#user</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#user_devices-instance_method" title="Auth0::Api::V1::Users#user_devices (method)">#user_devices</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#users-instance_method" title="Auth0::Api::V1::Users#users (method)">#users</a></span>, <span class='object_link'><a href="Auth0/Api/V1/Users.html#verification_ticket-instance_method" title="Auth0::Api::V1::Users#verification_ticket (method)">#verification_ticket</a></span></p>
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Auth0/Api/AuthenticationEndpoints.html" title="Auth0::Api::AuthenticationEndpoints (module)">Auth0::Api::AuthenticationEndpoints</a></span></h3>
|
206
|
+
<p class="inherited"><span class='object_link'><a href="Auth0/Api/AuthenticationEndpoints.html#change_password-instance_method" title="Auth0::Api::AuthenticationEndpoints#change_password (method)">#change_password</a></span>, <span class='object_link'><a href="Auth0/Api/AuthenticationEndpoints.html#delegation-instance_method" title="Auth0::Api::AuthenticationEndpoints#delegation (method)">#delegation</a></span>, <span class='object_link'><a href="Auth0/Api/AuthenticationEndpoints.html#login-instance_method" title="Auth0::Api::AuthenticationEndpoints#login (method)">#login</a></span>, <span class='object_link'><a href="Auth0/Api/AuthenticationEndpoints.html#obtain_access_token-instance_method" title="Auth0::Api::AuthenticationEndpoints#obtain_access_token (method)">#obtain_access_token</a></span>, <span class='object_link'><a href="Auth0/Api/AuthenticationEndpoints.html#signup-instance_method" title="Auth0::Api::AuthenticationEndpoints#signup (method)">#signup</a></span>, <span class='object_link'><a href="Auth0/Api/AuthenticationEndpoints.html#token_info-instance_method" title="Auth0::Api::AuthenticationEndpoints#token_info (method)">#token_info</a></span></p>
|
207
|
+
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
|
212
|
+
|
213
|
+
|
214
|
+
|
215
|
+
|
216
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="Auth0/Mixins/Initializer.html" title="Auth0::Mixins::Initializer (module)">Auth0::Mixins::Initializer</a></span></h3>
|
217
|
+
<p class="inherited"><span class='object_link'><a href="Auth0/Mixins/Initializer.html#included-class_method" title="Auth0::Mixins::Initializer.included (method)">included</a></span>, <span class='object_link'><a href="Auth0/Mixins/Initializer.html#initialize-instance_method" title="Auth0::Mixins::Initializer#initialize (method)">#initialize</a></span></p>
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
|
226
|
+
</div>
|
227
|
+
|
228
|
+
<div id="footer">
|
229
|
+
Generated on Mon Jan 26 03:18:46 2015 by
|
230
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
231
|
+
0.8.7.6 (ruby-2.0.0).
|
232
|
+
</div>
|
233
|
+
|
234
|
+
</body>
|
235
|
+
</html>
|
data/doc/_index.html
ADDED
@@ -0,0 +1,347 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>
|
7
|
+
Documentation by YARD 0.8.7.6
|
8
|
+
|
9
|
+
</title>
|
10
|
+
|
11
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8">
|
16
|
+
hasFrames = window.top.frames.main ? true : false;
|
17
|
+
relpath = '';
|
18
|
+
framesUrl = "frames.html#!_index.html";
|
19
|
+
</script>
|
20
|
+
|
21
|
+
|
22
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
23
|
+
|
24
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
25
|
+
|
26
|
+
|
27
|
+
</head>
|
28
|
+
<body>
|
29
|
+
<div id="header">
|
30
|
+
<div id="menu">
|
31
|
+
|
32
|
+
|
33
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
34
|
+
</div>
|
35
|
+
|
36
|
+
<div id="search">
|
37
|
+
|
38
|
+
<a class="full_list_link" id="class_list_link"
|
39
|
+
href="class_list.html">
|
40
|
+
Class List
|
41
|
+
</a>
|
42
|
+
|
43
|
+
<a class="full_list_link" id="method_list_link"
|
44
|
+
href="method_list.html">
|
45
|
+
Method List
|
46
|
+
</a>
|
47
|
+
|
48
|
+
<a class="full_list_link" id="file_list_link"
|
49
|
+
href="file_list.html">
|
50
|
+
File List
|
51
|
+
</a>
|
52
|
+
|
53
|
+
</div>
|
54
|
+
<div class="clear"></div>
|
55
|
+
</div>
|
56
|
+
|
57
|
+
<iframe id="search_frame"></iframe>
|
58
|
+
|
59
|
+
<div id="content"><h1 class="noborder title">Documentation by YARD 0.8.7.6</h1>
|
60
|
+
<div id="listing">
|
61
|
+
<h1 class="alphaindex">Alphabetic Index</h1>
|
62
|
+
|
63
|
+
<h2>File Listing</h2>
|
64
|
+
<ul id="files" class="index_inline_list">
|
65
|
+
|
66
|
+
|
67
|
+
<li class="r1"><a href="index.html" title="README">README</a></li>
|
68
|
+
|
69
|
+
|
70
|
+
</ul>
|
71
|
+
|
72
|
+
<div class="clear"></div>
|
73
|
+
<h2>Namespace Listing A-Z</h2>
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
<table>
|
79
|
+
<tr>
|
80
|
+
<td valign='top' width="33%">
|
81
|
+
|
82
|
+
|
83
|
+
<ul id="alpha_A" class="alpha">
|
84
|
+
<li class="letter">A</li>
|
85
|
+
<ul>
|
86
|
+
|
87
|
+
<li>
|
88
|
+
<span class='object_link'><a href="Auth0/Api.html" title="Auth0::Api (module)">Api</a></span>
|
89
|
+
|
90
|
+
<small>(Auth0)</small>
|
91
|
+
|
92
|
+
</li>
|
93
|
+
|
94
|
+
<li>
|
95
|
+
<span class='object_link'><a href="Auth0.html" title="Auth0 (module)">Auth0</a></span>
|
96
|
+
|
97
|
+
</li>
|
98
|
+
|
99
|
+
<li>
|
100
|
+
<span class='object_link'><a href="Auth0Client.html" title="Auth0Client (class)">Auth0Client</a></span>
|
101
|
+
|
102
|
+
</li>
|
103
|
+
|
104
|
+
<li>
|
105
|
+
<span class='object_link'><a href="Auth0/Api/AuthenticationEndpoints.html" title="Auth0::Api::AuthenticationEndpoints (module)">AuthenticationEndpoints</a></span>
|
106
|
+
|
107
|
+
<small>(Auth0::Api)</small>
|
108
|
+
|
109
|
+
</li>
|
110
|
+
|
111
|
+
</ul>
|
112
|
+
</ul>
|
113
|
+
|
114
|
+
|
115
|
+
<ul id="alpha_B" class="alpha">
|
116
|
+
<li class="letter">B</li>
|
117
|
+
<ul>
|
118
|
+
|
119
|
+
<li>
|
120
|
+
<span class='object_link'><a href="Auth0/BadRequest.html" title="Auth0::BadRequest (class)">BadRequest</a></span>
|
121
|
+
|
122
|
+
<small>(Auth0)</small>
|
123
|
+
|
124
|
+
</li>
|
125
|
+
|
126
|
+
</ul>
|
127
|
+
</ul>
|
128
|
+
|
129
|
+
|
130
|
+
<ul id="alpha_C" class="alpha">
|
131
|
+
<li class="letter">C</li>
|
132
|
+
<ul>
|
133
|
+
|
134
|
+
<li>
|
135
|
+
<span class='object_link'><a href="Auth0/Client.html" title="Auth0::Client (class)">Client</a></span>
|
136
|
+
|
137
|
+
<small>(Auth0)</small>
|
138
|
+
|
139
|
+
</li>
|
140
|
+
|
141
|
+
<li>
|
142
|
+
<span class='object_link'><a href="Auth0/Api/V1/Clients.html" title="Auth0::Api::V1::Clients (module)">Clients</a></span>
|
143
|
+
|
144
|
+
<small>(Auth0::Api::V1)</small>
|
145
|
+
|
146
|
+
</li>
|
147
|
+
|
148
|
+
<li>
|
149
|
+
<span class='object_link'><a href="Auth0/Api/V1/Connections.html" title="Auth0::Api::V1::Connections (module)">Connections</a></span>
|
150
|
+
|
151
|
+
<small>(Auth0::Api::V1)</small>
|
152
|
+
|
153
|
+
</li>
|
154
|
+
|
155
|
+
</ul>
|
156
|
+
</ul>
|
157
|
+
|
158
|
+
|
159
|
+
<ul id="alpha_E" class="alpha">
|
160
|
+
<li class="letter">E</li>
|
161
|
+
<ul>
|
162
|
+
|
163
|
+
<li>
|
164
|
+
<span class='object_link'><a href="Auth0/Exception.html" title="Auth0::Exception (class)">Exception</a></span>
|
165
|
+
|
166
|
+
<small>(Auth0)</small>
|
167
|
+
|
168
|
+
</li>
|
169
|
+
|
170
|
+
</ul>
|
171
|
+
</ul>
|
172
|
+
|
173
|
+
|
174
|
+
<ul id="alpha_H" class="alpha">
|
175
|
+
<li class="letter">H</li>
|
176
|
+
<ul>
|
177
|
+
|
178
|
+
<li>
|
179
|
+
<span class='object_link'><a href="Auth0/Mixins/HTTPartyProxy.html" title="Auth0::Mixins::HTTPartyProxy (module)">HTTPartyProxy</a></span>
|
180
|
+
|
181
|
+
<small>(Auth0::Mixins)</small>
|
182
|
+
|
183
|
+
</li>
|
184
|
+
|
185
|
+
</ul>
|
186
|
+
</ul>
|
187
|
+
|
188
|
+
|
189
|
+
<ul id="alpha_I" class="alpha">
|
190
|
+
<li class="letter">I</li>
|
191
|
+
<ul>
|
192
|
+
|
193
|
+
<li>
|
194
|
+
<span class='object_link'><a href="Auth0/Mixins/Initializer.html" title="Auth0::Mixins::Initializer (module)">Initializer</a></span>
|
195
|
+
|
196
|
+
<small>(Auth0::Mixins)</small>
|
197
|
+
|
198
|
+
</li>
|
199
|
+
|
200
|
+
</ul>
|
201
|
+
</ul>
|
202
|
+
|
203
|
+
|
204
|
+
<ul id="alpha_L" class="alpha">
|
205
|
+
<li class="letter">L</li>
|
206
|
+
<ul>
|
207
|
+
|
208
|
+
<li>
|
209
|
+
<span class='object_link'><a href="Auth0/Api/V1/Logs.html" title="Auth0::Api::V1::Logs (module)">Logs</a></span>
|
210
|
+
|
211
|
+
<small>(Auth0::Api::V1)</small>
|
212
|
+
|
213
|
+
</li>
|
214
|
+
|
215
|
+
</ul>
|
216
|
+
</ul>
|
217
|
+
|
218
|
+
|
219
|
+
</td><td valign='top' width="33%">
|
220
|
+
|
221
|
+
|
222
|
+
<ul id="alpha_M" class="alpha">
|
223
|
+
<li class="letter">M</li>
|
224
|
+
<ul>
|
225
|
+
|
226
|
+
<li>
|
227
|
+
<span class='object_link'><a href="Auth0/Mixins.html" title="Auth0::Mixins (module)">Mixins</a></span>
|
228
|
+
|
229
|
+
<small>(Auth0)</small>
|
230
|
+
|
231
|
+
</li>
|
232
|
+
|
233
|
+
</ul>
|
234
|
+
</ul>
|
235
|
+
|
236
|
+
|
237
|
+
<ul id="alpha_N" class="alpha">
|
238
|
+
<li class="letter">N</li>
|
239
|
+
<ul>
|
240
|
+
|
241
|
+
<li>
|
242
|
+
<span class='object_link'><a href="Auth0/NotFound.html" title="Auth0::NotFound (class)">NotFound</a></span>
|
243
|
+
|
244
|
+
<small>(Auth0)</small>
|
245
|
+
|
246
|
+
</li>
|
247
|
+
|
248
|
+
</ul>
|
249
|
+
</ul>
|
250
|
+
|
251
|
+
|
252
|
+
<ul id="alpha_R" class="alpha">
|
253
|
+
<li class="letter">R</li>
|
254
|
+
<ul>
|
255
|
+
|
256
|
+
<li>
|
257
|
+
<span class='object_link'><a href="Auth0/Api/V1/Rules.html" title="Auth0::Api::V1::Rules (module)">Rules</a></span>
|
258
|
+
|
259
|
+
<small>(Auth0::Api::V1)</small>
|
260
|
+
|
261
|
+
</li>
|
262
|
+
|
263
|
+
</ul>
|
264
|
+
</ul>
|
265
|
+
|
266
|
+
|
267
|
+
<ul id="alpha_S" class="alpha">
|
268
|
+
<li class="letter">S</li>
|
269
|
+
<ul>
|
270
|
+
|
271
|
+
<li>
|
272
|
+
<span class='object_link'><a href="Auth0/ServerError.html" title="Auth0::ServerError (class)">ServerError</a></span>
|
273
|
+
|
274
|
+
<small>(Auth0)</small>
|
275
|
+
|
276
|
+
</li>
|
277
|
+
|
278
|
+
</ul>
|
279
|
+
</ul>
|
280
|
+
|
281
|
+
|
282
|
+
<ul id="alpha_U" class="alpha">
|
283
|
+
<li class="letter">U</li>
|
284
|
+
<ul>
|
285
|
+
|
286
|
+
<li>
|
287
|
+
<span class='object_link'><a href="Auth0/Unauthorized.html" title="Auth0::Unauthorized (class)">Unauthorized</a></span>
|
288
|
+
|
289
|
+
<small>(Auth0)</small>
|
290
|
+
|
291
|
+
</li>
|
292
|
+
|
293
|
+
<li>
|
294
|
+
<span class='object_link'><a href="Auth0/Unsupported.html" title="Auth0::Unsupported (class)">Unsupported</a></span>
|
295
|
+
|
296
|
+
<small>(Auth0)</small>
|
297
|
+
|
298
|
+
</li>
|
299
|
+
|
300
|
+
<li>
|
301
|
+
<span class='object_link'><a href="Auth0/UserIdIsBlank.html" title="Auth0::UserIdIsBlank (class)">UserIdIsBlank</a></span>
|
302
|
+
|
303
|
+
<small>(Auth0)</small>
|
304
|
+
|
305
|
+
</li>
|
306
|
+
|
307
|
+
<li>
|
308
|
+
<span class='object_link'><a href="Auth0/Api/V1/Users.html" title="Auth0::Api::V1::Users (module)">Users</a></span>
|
309
|
+
|
310
|
+
<small>(Auth0::Api::V1)</small>
|
311
|
+
|
312
|
+
</li>
|
313
|
+
|
314
|
+
</ul>
|
315
|
+
</ul>
|
316
|
+
|
317
|
+
|
318
|
+
<ul id="alpha_V" class="alpha">
|
319
|
+
<li class="letter">V</li>
|
320
|
+
<ul>
|
321
|
+
|
322
|
+
<li>
|
323
|
+
<span class='object_link'><a href="Auth0/Api/V1.html" title="Auth0::Api::V1 (module)">V1</a></span>
|
324
|
+
|
325
|
+
<small>(Auth0::Api)</small>
|
326
|
+
|
327
|
+
</li>
|
328
|
+
|
329
|
+
</ul>
|
330
|
+
</ul>
|
331
|
+
|
332
|
+
</td>
|
333
|
+
</tr>
|
334
|
+
</table>
|
335
|
+
|
336
|
+
</div>
|
337
|
+
|
338
|
+
</div>
|
339
|
+
|
340
|
+
<div id="footer">
|
341
|
+
Generated on Mon Jan 26 03:18:46 2015 by
|
342
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
343
|
+
0.8.7.6 (ruby-2.0.0).
|
344
|
+
</div>
|
345
|
+
|
346
|
+
</body>
|
347
|
+
</html>
|