Method
SnapdClientlogin_async
deprecated: 1.26 since: 1.0
Declaration [src]
void
snapd_client_login_async (
SnapdClient* client,
const gchar* email,
const gchar* password,
const gchar* otp,
GCancellable* cancellable,
GAsyncReadyCallback callback,
gpointer user_data
)
Description [src]
Asynchronously get authorization to install/remove snaps.
See snapd_client_login_sync()
for more information.
Available since: 1.0
Deprecated since: 1.26
Use snapd_client_login2_async()
Parameters
email
-
Type:
const gchar*
Email address to log in with.
The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. password
-
Type:
const gchar*
Password to log in with.
The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. otp
-
Type:
const gchar*
Response to one-time password challenge.
The argument can be NULL
.The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. cancellable
-
Type:
GCancellable
A
GCancellable
orNULL
.The argument can be NULL
.The data is owned by the caller of the method. callback
-
Type:
GAsyncReadyCallback
A
GAsyncReadyCallback
to call when the request is satisfied.The argument can be NULL
. user_data
-
Type:
gpointer
The data to pass to callback function.
The argument can be NULL
.The data is owned by the caller of the method.