Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the workflow for developing a web page for Kik Messenger

Tags:

kik

I'm looking at what's required to develop a web page for the Kik Messenger in-app browser and I'm confused as to how the development workflow is supposed to work.

The API Docs say that "To launch your webpage in Kik simply open the sidebar and type in the URL to your webpage.", which would be fine except for the fact that the "sidebar" no longer exists in the current version of the app and it no longer seems to be possible to enter an arbitrary URL(*).

* EDIT: It looks like you can open an arbitrary URL in the browser by entering it into chat and then tapping on it.

Given these restrictions, how do folks test their web pages with the app? Do you have to just use the Chrome Extension until deployment?

Related question: How do you make Kik aware of your web page? Some of the other questions on this site imply that you have to wait for their web crawler to index it. Is that the case? If so, is exactly how this works documented anywhere? I feel like I've missed a doc link along the way.

like image 905
AndrewR Avatar asked Dec 29 '15 03:12

AndrewR


People also ask

How to build a Kik Messenger bot with Amazon Lex?

One of the bot-building frameworks equipped with Kik Messenger integration is Amazon Lex. Not surprisingly, the first step is to build your bot on Amazon Lex. The actual bot creation, of course, takes place within the framework. Your Amazon Lex bot will interface with Kik via an API, but all of the development occurs on the Amazon Lex end.

Is Kik accessible for people with disabilities?

We’re always striving to make kik.com the best experience it can be for everyone who visits the site. Recently, we teamed up with One Net to make our web content and features more accessible to people with disabilities. Our approach was to review all pages on kik.com to ensure all the right criteria was met.

How do I get Started with Kik reading recommendations?

You can enter the name of an author, indicate your mood (so that the bot can suggest a book in keeping with how you feel), or just request recommendations from the Epic Reads blog. Kik developer documentation, including the API reference material, is a good place to familiarize yourself with Kik’s technical side.

How do I view a high contrast version of Kik?

If you visit kik.com, you can now scroll to the bottom of the page to see the different options for viewing the site. Clicking on ‘View High Contrast Site’ will allow you to view a version of the site coded for users with visual impairments (partial blindness).


1 Answers

In December they removed the NEW Apps tab in the Discovery Section as well as the option to access arbitrary URLs. (as you pointed out) For testing I usually use the Chrome extension or access my testserver via an URL from a chat.

But since the NEW tab is currently removed, it is not very feasible to release new Kik Apps at the moment, since people would only be able to discover your App by using the Search function and getting into top 100 would be very unlikly this way. I contacted Kik if the removal of the NEW tab was a permanent change, to which I got the response that they are currently revamping their platform and new solutions on the way for the stuff they are moving.

So if u are currently working on a Kik App I would recommend waiting with releasing it until possible future updates of the Kik Browser are released.

As for your other question to make the crawler find you app, you simply have to add some Meta tags into your header:

<meta name="description" content="app description">
<link rel="kik-icon" href="your image")">
<link rel="canonical" href="your domain">
<script src="http://cdn.kik.com/kik/2.0.5/kik.js"></script>
like image 198
Jakob Abfalter Avatar answered Sep 28 '22 21:09

Jakob Abfalter