get_token_cb_t

The success callback function for ids_get_token()

Synopsis:

#include <ids.h>
 
typedef void(* get_token_cb_t)(ids_request_id_t request_id, const char *token, int param_count, const ids_token_param_t *params, void *cb_data);

Arguments:

request_id

The request id that matches the one returned during the request.

token

A pointer to the string representation of the requested token.

param_count

The number of additional token parameters returned.

params

A pointer to the list of additional token parameters.

cb_data

The cb_data pointer passed in during the request.

Since:

BlackBerry 10.2.0

Library:

libids (For the qcc command, use the -l ids option to link against this library)

Description:

The success callback function for ids_get_token().