无法链接。 openURL whatsup消息在本机反应

时间:2018-06-19 12:36:18

标签: javascript reactjs react-native hybrid-mobile-app whatsapp

我需要使用预加载的消息打开whatsup,如下所示:

Linking.openURL('whatsapp://send?text==%C2%A1Hola!%20Quiero%20realizar%20una%20consulta.&phone=5493416931539').catch(err => console.error('An error occurred', err));

我收到错误消息:"{"framestopop:1,code:EUNSPECIFIED"}"

我尝试过使用.catch(() => null);,但两者均无效。

1 个答案:

答案 0 :(得分:1)

您需要使用以下代码

import { Linking } from ‘react-native’;
shareToWhatsAppWithContact = (text, phoneNumber) => {
 Linking.openURL(`whatsapp://send?text=${text}&phone=${phoneNumber}`);
}