Is there a method to open Apple Wallet application from web page in the iOS - passbook

If I want to open Telegram I use
Launch App
or
Launch Telegram
Is there a method to open Apple Wallet application?

Sure, the undocumented URI scheme is shoebox://. So this will work:
Launch Apple Wallet

Related

To do a Agora.io voice call do you have to be in the app you are calling from?

I want to use Agora.io in my application, but i want to know does the user have to be logged in to the application in order to receive the call or does Agora.io call the phone and not through the app?
Agora's engine does not implement direct calling functionality. Agora supports two or more users joining a "channel" but both have to be using the app), but Agora does not support push notifications in their SDK.
You will need to use a service for push notifications (when user isn't in-app), CallKit (iOS) or ConnectionService (Android) for the phone-call UI.
[Update]
Agora has a demo showing how to use Agora's Real-Time Messaging along with the native ConnectionService/CallKit to implement a "call" feature using Agora.
Android: https://github.com/AgoraIO-Usecase/Video-Calling/tree/master/OpenDuo-Android
IOS: https://github.com/AgoraIO-Usecase/Video-Calling/tree/master/OpenDuo-iOS

How to receive native messages from chrome extension to Mac app?

I have a Chrome extension which gets the location URL and I want it to send that URL to a Mac app.
I was able to run this demo, but I don't know how I can receive the message in a Mac app. Where would get I the message?
There are two approaches you can use.
Native Messaging API. This does have the limitation that Chrome must launch the process and communicate to it through stdio,
conforming to native message API protocols .
Your native app can expose a web server on a local port. The
extension can then try to connect to this port and talk to your app.
I would suggest the first solution as its a pretty secure soultion.

Beta testing with internal testers for iOS 8

I'm having trouble with setting up a beta test with internal testers using iTunes Connect and TestFlight.
I've added users as internal testers inside iTunes Connect, but how do I distribute the app to them? Inside Xcode I don't find any option for distributing to beta testers.
In response to #haupman's issue.
It seems that trying to install, when accepting the invite in the gmail app, on an iOS device, won't always work.
The workaround was to forward the email to an address that is synched to the iOS mail app and then click on the links from inside.
As Fluffhead said, Gmail app won't work, since it opens Chrome for the link, which has no use.
Two options to accept the internal tester invitation in a mail from iTunes:
1) Use iOS Mail to click the link in the mail, then iOS Mail will open Safari automatically.
2) If iOS Mail is not available, copy the link and paste it to Safari. For example, you can use Gmail to click the link, copy the link in Chrome, and then paste it to Safari.
Its the issue with Gmail definitely.
Forward the invitation mail to one of your mailID configured on your
Mail app on iOS device.
Open the link now from your apple mail app.
The link works now.

how to send push notification without apple device

is it possible to send push notification for apple without apple device? I would like to send push notification using any page or service from apple, but not using an app created in xcode for example. My app that will get the push is ready and working, but I would like to send the push from a normal page, not from mac or iphone app.
Apple push notifications can only be send to Apple devices (iOS, OSX or Safari for Mac).
However, you can send the notification from any type of operating system using the Apple Push Notification Service API:
https://developer.apple.com/library/ios/documentation/networkinginternet/conceptual/remotenotificationspg/Chapters/ApplePushService.html#//apple_ref/doc/uid/TP40008194-CH100-SW9
Yes, you can do that for free with using a push notification API, such as Spontit.
See the API docs here: https://api.spontit.com/
See the Python wrapper here: https://github.com/spontit/spontit-api-python-wrapper

PIN authentication on iOS app and then listing all ios apps

I want to list all my published iOS apps list on my main ios app .
My main iOS app will perform like this: First screen will ask to enter PIN (an authorization code, user will have this code from my other web url ) after validation, next screen will show all published app (published from my developer a/c) of iTunes store. apps will be a free type category, if user click on any specific app, the itunes app should be launch to download that app on device.
Could some one please suggest me , is there any violation of Apple's rule to show my apps in this way authentication to my customers? Will apple reject my app?
Although i was trying to understand a search API of iTunes
http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html
Thanks a lot,