* @privlevel public
*
* @param[in] handle The request handle.
- * @param[in] authorization_code The authorization code.
+ * @param[in] code The authorization code.
*
* @return @c 0 on success,
* otherwise a negative error value
OAUTH2_API int oauth2_request_get_refresh_token_url(oauth2_request_h handle, char **url);
/**
- * @brief Sets refresh token.
+ * @brief Gets refresh token.
* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
* @privlevel public
*
OAUTH2_API int oauth2_request_get_grant_type(oauth2_request_h handle, oauth2_grant_type_e *grant_type);
/**
- * @brief Get authorization code.
+ * @brief Gets authorization code.
* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
* @privlevel public
*
* @retval #OAUTH2_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #OAUTH2_ERROR_VALUE_NOT_FOUND Value not found
*
- * @see @oauth2_error_h
+ * @see oauth2_error_h
* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
*/
OAUTH2_API int oauth2_response_get_error(oauth2_response_h handle, oauth2_error_h *error);