Get content from adobe target can not in react native | Community
Skip to main content
New Participant
June 19, 2024
Question

Get content from adobe target can not in react native

  • June 19, 2024
  • 2 replies
  • 679 views

Hello why in react native i can't receive content data from this 

and this is my code in react native

const retrieveLocationContent = () => {
const request1 = new TargetRequestObject(
'mobile_app_content_mbox',
null,
'Default Content for Location 1',
(error, content) => {
if (error) {
console.error(error);
} else {
console.log('Adobe content: ' + content);
}
},
);

const locationRequests = [request1];

Target.retrieveLocationContent(locationRequests, null);
};
and i always get  result Default Content for Location 1. it's always callback result. how to get result json from adobe target?
Please help me
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

nialldbarber
New Participant
November 25, 2024

@sophia_filwa @vincelu did either of you find an answer to this? 

 

I'm also trying to set this up, following the setup guide, but am also running into this issue. 

New Participant
July 17, 2024

same issue, have you resolved this?