I am using PhoneGap to create Mobile Application.
How can I share link to social network that installed in Phone like ( WhatsApp , Messaging ).
regards,
use this plugin, it supports whatsapp as well: https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin
Related
I am trying to share data on QQ internation and Weibo, but not getting such a good way to post data on this messengers, i tried a lot for sharing data on weibo and qq internation but not getting result.
guide me to correct way and which is the good way to share data on this both messegner.
You might want to look at the SDK's they offer. Third-party service providers encapsulate their services on platforms such as iPhone in special SDK (software development kit) so you can easily talk to their servers.
QQ iOS SDK
Weibo iOS SDK
Try MonkeyKing library.
MonkeyKing helps you post messages to Chinese Social Networks, without
their buggy SDKs.
MonkeyKing use the same analysis process of openshare, support share
Text, URL, Image, Audio, and Video to WeChat, QQ or Weibo. MonkeyKing
also can post message to Weibo by webpage. (Note that Auido and Video
are only specifically for WeChat or QQ)
One more thing: MonkeyKing supports OAuth.
I have an app with some native screens and some additional content I load via UIWebView. I am trying to track both native and web content into the same google analytics account. I'm able to create an account that tracks web and I can create a separate account that tracks the native screens. How can I combine this tracking into a single account?
Track web code using ga.js and native code using GA iOS SDK
You should have a UA account ID of the sort "UA-xxxxxxxx". If you use this
same Analytics tracking ID across your web app & native iOS app, all your data will end up in the same Google Analytics bucket. Obviously, you'll have to use the javascript library in your web app and native SDK in your iOS app.
Alternative Solution (I dont really recommend this)
You can you have your web app pipe in your GA events into your iOS app. How I did this in the past was like so.
I created a special GA codes like myapp://ga-pageview/<pagename> and myapp://ga-event/event_category/event_name.
Use the UIWebViewDelegate method webView:shouldStartLoadWithRequest:navigationType: to intercept these "special" urls and do the GA callback natively.
In the web app, whereever you need you need call a GA event, create an iframe with the myapp://ga-* url scheme above. Then remove that iframe.
Is there any protocol that I can use to open an address in the (now downloadable) Google Maps? This is not a native app, just a web app/site for Safari (web clip). Does Google provide any such protocol for use on a non-native app? I know how to accomplish this for the Apple maps app (with the maps://), but does Google provide any way for doing this for their Google maps app?
Thank A LOT in advance!!
I believe so, the URL would be (comgooglemaps://...)
see this article for more information-- https://developers.google.com/maps/documentation/ios/urlscheme
I want to integrate Google Talk, voice & transalation in my iOS app. I tried this link
I just show me my contact list. How can I start chatting or voice call from this ?
If any one have idea or any other solution to integrate above services in my iOS app ?
Thanks
For chat, use XEP-0045
For voice, Google Talk uses libjingle which is a C++ implementation of XEP-0166/XEP-0167
For translation, you may need to find an implementation of XEP-0171
I want to share my app in BlackBerry Messenger from my Application.
I want to share my App icon and description of my Application. Is it possible to implement this without any BBM Sdk or any other way?
How to open BBM Contact List from the Application?
If anyone has an idea please suggest it.
You really need to use the BBM Social Platform SDK to accomplish this. The BBM Contact list isn't accessible in any case although with the SDK you can display it to the user, you won't be able to read the entire list.