kaios

How to implement deeplinks in KaiOS

别说谁变了你拦得住时间么 提交于 2021-02-10 12:41:39
问题 Quite simple. A user should be able to click on a link like app:this/is/some/link?with=information and the desired app opens and does some action. Is this possible in KaiOS? Similar question to this stackoverflow question, but just the other side. Another application should be possible to link to my application. 回答1: Deeplinks do exist on KaiOS 2.5.3 or newer, but there is no documentation on them. For example, this is from the KaiStore app manifest: "deeplinks": { "regex": "^(app://)(kaios

KaiOS - Share using WhatsApp

梦想的初衷 提交于 2021-01-27 12:11:25
问题 I'm trying to develop an app for KaiOS and I want to share text messages using WhatsApp. I tried with app://whatsapp/send and whatsapp://send but it didn't work. Does anyone know how to do it? 来源: https://stackoverflow.com/questions/59840271/kaios-share-using-whatsapp

How to share link on Facebook from own application (KaiOS feature phone)

和自甴很熟 提交于 2020-05-17 07:28:25
问题 I am trying to share a link to Facebook from own application. Below are the steps/code snippet used: On click of some media item, on click of Options menu user can select Facebook. var activity = new MozActivity({ name: "share", data: { type: "url", url: "http://google.com/" } }); activity.onsuccess = function() { setTimeout(function() { window.focus(); }, 500); }; activity.onerror = function() { console.log("The activity encounter en error: " + this.error); }; Here, it's going in onerror() ,