-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
InitSessionComplete - BranchUniversalObject properties #102
Comments
@jzeferino try this: |
That works, but since im using the BUO I was expecting to have a property with that value. Also for values like |
@jzeferino I will send your request to our team. |
Thanks. Should I expect any due date for this? @antonargunov |
In the context of
public void InitSessionComplete(BranchUniversalObject buo, BranchLinkProperties blp)
i'm callingDebug.WriteLine(buo.metadata.ToJsonString());
and getting:
"{"+clicked_branch_link":"false","+click_timestamp":"1559835438","~marketing":"True","$one_time_use":"False","~feature":"marketing","+match_guaranteed":"True","~creation_source":"1","~id":"627164851064107222","~channel":"Web","~referring_link":"https://mobile-api-gothelist.test-app.link/qLeAj4iAuU","+is_first_session":"False","$marketing_title":"CustomTestUrl","~campaign":"TestCampgain"}"
The question is, there is no property that I can access in
buo
that retrieves thereferring_link
. The only way to get thereferring_link
is to change toInitSessionComplete(Dictionary<string, object> data)
and manually parse the dictionary.The text was updated successfully, but these errors were encountered: