https://github.com/BranchMetrics/branch-deep-linking-public-api을 사용하여 내 사용자를 위해 branch link
을 만듭니다.브랜치 ID를 branch.io의 ID에서 어떻게 액세스 할 수 있습니까?
링크를 성공적으로 생성 할 수 있으며 정상적으로 작동합니다. 그러나 내 연결에는 분기 ID ID 인 하나의 주요 데이터가 누락되었습니다. 이것은 내가 또한 링크를 만드는 동안 나는 $identity_id
태그에 값을 전달하는 경우 다음 내 링크 지점 식별 ID를 볼 수 있음을 이해 Branch
에 개인의 정체성과 관련된 Branch ID
입니다. 하지만이 ID에 액세스하는 방법을 모르겠습니다.
여기 내 코드입니다.
const sendBranchRequest = params => {
const { path, body, qs, method } = params;
const options = {
method
, uri: `${ baseUrl }/${ path }`
, headers: {
"Content-Type": "application/json"
, "Cache-Control": "no-cache"
}
, json: true
};
if (body) {
options.body = body
options.body.branch_key = branchKey;
options.body.branch_secret = branchSecret;
}
return rp(options);
};
const createLink = data => {
const params = {
body: { data }
, method: 'POST'
, path: 'url'
};
return sendBranchRequest(params);
};
미리 감사드립니다.