XUserGetTokenAndSignatureHttpHeader
웹 요청의 HTTP 헤더를 지정합니다.
구문
typedef struct XUserGetTokenAndSignatureHttpHeader {
const char* name;
const char* value;
} XUserGetTokenAndSignatureHttpHeader
멤버
name
형식: const char*
헤더 이름입니다.
value
형식: const char*
헤더 값입니다.
비고
웹 요청에 대한 xtokens 및 서명을 비동기적으로 검색하려면, XUserGetTokenAndSignatureAsync 함수를 호출합니다. 이 함수는 XUserGetTokenAndSignatureHttpHeader 구조에 대한 포인터를 인수로 취합니다.
XUserGetTokenAndSignatureAsync 호출 결과를 검색하려면, XUserGetTokenAndSignatureResult 함수를 호출합니다.
다음 예제에서는 사용자의 토큰 및 서명을 비동기적으로 검색하는 방법을 보여줍니다.
HRESULT RequestTokenComplete(XAsyncBlock* abResult)
{
size_t bufferSize;
RETURN_IF_FAILED(XUserGetTokenAndSignatureResultSize(abResult, &bufferSize));
std::vector<uint8_t> buffer(bufferSize);
XUserGetTokenAndSignatureData* data;
if (SUCCEEDED_LOG(XUserGetTokenAndSignatureResult(abResult, buffer.size(), buffer.data(), &data, nullptr /*bufferUsed*/)))
{
appLog.AddLog("Token: %s\n", data->token);
if (data->signature != nullptr)
{
appLog.AddLog("Signature: %s\n", data->signature);
}
}
return S_OK;
}
HRESULT RequestTokenAsync(
XTaskQueueHandle queue,
const char* url,
bool forceRefresh)
{
auto asyncBlock = std::make_unique<XAsyncBlock>();
ZeroMemory(asyncBlock.get(), sizeof(*asyncBlock));
asyncBlock->queue = queue;
asyncBlock->context = this;
asyncBlock->callback = [](XAsyncBlock* ab)
{
LOG_IF_FAILED(static_cast<User*>(ab->context)->RequestTokenComplete(ab));
delete ab;
};
XUserGetTokenAndSignatureOptions options = XUserGetTokenAndSignatureOptions::None;
if (forceRefresh)
{
WI_SET_FLAG(options, XUserGetTokenAndSignatureOptions::ForceRefresh);
}
static const XUserGetTokenAndSignatureHttpHeader headers[] =
{
{ "Accept", "application/json"},
{ "Why", "Because"},
};
if (SUCCEEDED_LOG(XUserGetTokenAndSignatureAsync(
_handle.get(),
options,
"GET",
url,
ARRAYSIZE(headers),
headers,
0,
nullptr,
asyncBlock.get())))
{
// The call succeeded, so release the std::unique_ptr ownership of XAsyncBlock* since the callback will take over ownership.
// If the call fails, the std::unique_ptr will keep ownership and delete the XAsyncBlock*
asyncBlock.release();
}
return S_OK;
}
요구 사항
헤더: XUser.h
지원되는 플랫폼: Windows, Xbox One 패밀리 콘솔 및 Xbox Series 콘솔