I created a Card in CRM extension and I am able to see this card in the dashboard. In the payload from fetch data uri, I speicfy the a iframe in the action and link a external URI “www.google.com”. But when I click the action to open the iframe, it shows an error: “www.google.com refused to connect.”. I have tired a few different URI but always get this “refused to connect” error. How can I specify a valid url in the iframe?
{
results: [
{
objectId: 1,
title: `Transaction History`,
key1: ‘value1’,
key2: ‘value2’,
key3: ‘value3’,
actions: [
{
type: ‘IFRAME’,
width: 890,
height: 748,
uri: ‘https://www.google.com’,
label: ‘Query transaction history’,
},
],
},
{
objectId: 2,
title: `Deposit History`,
actions: [
{
type: ‘IFRAME’,
width: 890,
height: 748,
uri: ‘https://www.google.com’,
label: ‘Query transaction history’,
},
],
},
],
};
