私はhttps://github.com/BranchMetrics/branch-deep-linking-public-apiを使用して自分のユーザーにbranch link
を作成しています。ブランチID IDにbranch.ioのIDからアクセスするには
私はまた、正常に動作し、正常リンクを作成することができています。しかし私のリンクは、ブランチアイデンティティIDである1つの主要なデータが欠落しています。これは私もリンクを作成しながら、私は$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);
};
ありがとうございます。