> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PFAuthenticationLoginWithGoogleAccountGetResult

> Obtiene el resultado de una llamada a PFAuthenticationLoginWithGoogleAccountAsync. PFEntityHandle siempre se devuelve, pero la información adicional de.

Obtiene el resultado de una llamada a PFAuthenticationLoginWithGoogleAccountAsync. PFEntityHandle siempre se devuelve, pero la información adicional de PFAuthenticationLoginResult solo se devuelve si se proporciona un búfer.

## Sintaxis

```cpp theme={null}
HRESULT PFAuthenticationLoginWithGoogleAccountGetResult(  
    XAsyncBlock* async,  
    PFEntityHandle* entityHandle,  
    size_t bufferSize,  
    void* buffer,  
    PFAuthenticationLoginResult result,  
    size_t* bufferUsed  
)  
```

### Parámetros

**`async`**   XAsyncBlock\*<br />*Inout*

XAsyncBlock para la operación asincrónica.

**`entityHandle`**   PFEntityHandle\*<br />*output*

PFEntityHandle que se puede usar para autenticar otras llamadas API de PlayFab.

**`bufferSize`**   size\_t

Tamaño del búfer para el objeto de resultado.

**`buffer`**   void\*<br />\**Out\_writes\_bytes\_to\_opt*(bufferSize,*bufferUsed)*

Búfer de bytes usado para el valor del resultado de Login y sus campos.

**`result`**   [PFAuthenticationLoginResult](/services/playfab/api-references/c/pfauthenticationtypes/structs/pfauthenticationloginresult)<br />*optional, library-allocated output*

Puntero al objeto LoginResult.

**`bufferUsed`**   size\_t\*<br />*optional output*

Número de bytes del búfer proporcionado que se usaron.

### Valor devuelto

Tipo: HRESULT

Código de resultado de esta operación de API. Si la llamada al servicio no se realiza correctamente, el resultado será E\_PF\_ENCRYPTION\_KEY\_MISSING, E\_PF\_EVALUATION\_MODE\_PLAYER\_COUNT\_EXCEEDED, E\_PF\_GOOGLE\_O\_AUTH\_ERROR, E\_PF\_GOOGLE\_O\_AUTH\_NO\_ID\_TOKEN\_INCLUDED\_IN\_RESPONSE, E\_PF\_GOOGLE\_O\_AUTH\_NOT\_CONFIGURED\_FOR\_TITLE, E\_PF\_INVALID\_GOOGLE\_TOKEN, E\_PF\_PLAYER\_SECRET\_ALREADY\_CONFIGURED, E\_PF\_PLAYER\_SECRET\_NOT\_CONFIGURED, E\_PF\_REQUEST\_VIEW\_CONSTRAINT\_PARAMS\_NOT\_ALLOWED o cualquiera de los errores globales de PlayFab Service. Consulte la página de documentación "Handling PlayFab Errors" para obtener más detalles sobre el control de errores.

## Comentarios

Si se produce un error en la llamada a PFAuthenticationLoginWithGoogleAccountAsync, entityHandle será null. De lo contrario, el identificador debe cerrarse con PFEntityCloseHandle cuando ya no sea necesario. Si se devuelve, 'result' es un puntero dentro de 'buffer' y no es necesario liberarlo por separado.

## Requisitos

**Encabezado:** PFAuthentication.h

## Consulte también

[Miembros de PFAuthentication](/services/playfab/api-references/c/pfauthentication/pfauthentication_members)


## Related topics

- [PFAuthenticationLoginWithGoogleAccountAsync](/es/services/playfab/api-references/c/pfauthentication/functions/pfauthenticationloginwithgoogleaccountasync.md)
- [Información general de la API de C de Services - PFAuthentication.h](/es/services/playfab/api-references/c/pfauthentication/pfauthentication_members.md)
- [PFAuthenticationLoginWithGoogleAccountGetResultSize](/es/services/playfab/api-references/c/pfauthentication/functions/pfauthenticationloginwithgoogleaccountgetresultsize.md)
- [PFAuthenticationLoginWithGoogleAccountRequest](/es/services/playfab/api-references/c/pfauthenticationtypes/structs/pfauthenticationloginwithgoogleaccountrequest.md)
- [PFAuthenticationLoginWithGooglePlayGamesServicesGetResult](/es/services/playfab/api-references/c/pfauthentication/functions/pfauthenticationloginwithgoogleplaygamesservicesgetresult.md)
