Not able to download app code from ionic view app - ionic-framework

I am using ionic 2 to build my app. I have uploaded my app to ionic view. My app id is 779eb729
I lost my code locally.
How can i download the code uploaded to ionic view?
I have tried the following
Entering app Id to download it as a zip using the below link.
https://apps.ionic.io/settings/data
Getting error as below.
<Error>
<script/>
<Code>NoSuchKey</Code>
The specified key does not exist.</Message>
<Key>e5ca31a4-6c38-11e7-8adb-0a16d4594913.zip</Key>
<RequestId>214F9C8D72CC27EF</RequestId>
<HostId>
m7KAm/NPBiADxHzhMs8z9lbqHEQni+4wvxRHNlK+tyTH9JHDcsW95hhqth87u2Ds7XrpJZCbwoU=
</HostId>
`'
Using ionic view app.
I dont seee my apps listed in the app when i click on load app.
I can see the list when i log into pc, not in mobile app.
Can u pls help me in downloading the app. My app id is 779eb729

Related

Does iOS universal link can forward to App at first time user install app?

I want to make my app automatic get ref code from Universal link at the first time install app from Appstore and click Open from AppStore.
Can I do it in this case ?
Here is my use case:
I'm using Firebase Dynamic Link to make short link:
Setup Deep Link: https://sample.com/refcode="ABC"
Open the deep link in iOS App: --> choose my app ( bundle id & Appstore ID )
--> Output Dynamic Link: https://sample.page.link/abc
I want to make user who using Mobile and open this link:
User open app in the AppStore ( OK )
User Click "Install" and "Open" app from Appstore ( OK )
Expected Appstore open App and pass Deep Link https://sample.com/refcode="ABC" to the app at the first time open App. Then I can get parameter "refcode" from link to automatic fill to a Textfield in my app.
Can we do this action with Apple Store ?
Thank you

Opening facebook page and app store using ionic 3 in iOS

I wanna open my facebook page link using the ionic: It's working in Android using:
window.open('fb://page/620967164688741', '_system')
and through some tutorials I came to know that in order to open Facebook page, use the:
window.open('fb://profile/620967164688741', '_system')
But even after doing that, I'm unable to open.
And same goes with open the store, on Android it's working fine but again issue on iOS. Below is the code:
let promise = this.market.open('com.teach9.teach9');
Can someone correct me where I'm making mistake?
How about you check this plugin out for iOS - "inAppBrowser" at "https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-inappbrowser/"?
P.S. In iOS you should be able to open any webpage inside the inAppBrowser, Make sure that the target is set as "_blank" instead of "_system".

Ionic 2 PWA: Linking to specific page

I want to let people share their own user profile in my app.
Therefore, each profile needs to have his own link, for example: myweb.com/user1
Unfortunetly, there are no such links/routes in an ionic 2 app.
This leads to my question- How I can let users share their own profile URL so other people will be redirected right to the sender profile page? Is there any way to do this so it will work in desktop too with Ionic 2?
For info - This is resolved with the addition of support for deeplinking in Ionic 3. The CLI commands $ ionic g page user will now create a page with it's own page module and the ability to specify how the url should be formed using the #IonicPage decorator. In your case you would also add the user id as a param in the #IonicPage segment, for example:
#IonicPage({
name: "user",
segment: "user/:id"
})
You can then deeplink straight to the user's page with the url.
You can set your app link using Custom URL scheme plugin. It will help you to create your app link, which can open from browser. For example if you type myApp:// in browser URL then navigate to that URL, it will open your app.
To do this install plugin as below :
ionic cordova plugin add cordova-plugin-customurlscheme --variable URL_SCHEME=myCoolApp
Where myCoolApp is the URL schema from which you can open your app.
For testing it is working or not type myCoolApp:// in any browser of your phone and go. If it will redirect to your app it is working, otherwise not working.

Firebase SimpleLogin (Facebook) Failing with Ionic on iPhone

I've configured Facebook Login, and it works on desktop browsers. However, when using an actual iPhone connected to my laptop, two things happen:
the first time I enter my login details (with Cordova in-app browser), Facebook gives me this page: http://cl.ly/image/0n3Z083o2H0j
after I close and reopen the app, I look in GapDebug and see a request to something like https://auth.firebase.com/auth/facebook/callback?code=YDFasdfjsdfh893&fb_redirect_uri%22%3A%22file... with an error message "Failed to load resource: You do not have permission to access the requested resource."
It looks like the fb_redirect_uri is trying to get a file path instead of a URL -- is that right? Do I have a data access problem or what?
Not sure exactly what was going on, but I updated AngularFire and FirebaseSimpleLogin and then it worked.

Phone gap ios app - show pdf file with print/email options

I have a requirement to do the following task.
Inside a Phonegap iOS app, the user wants to view a pdf file after clicking a link which will load the pdf from the remote server.
And also user needs print, email functions with this document viewer.
So far I have tried following options.
Exit from the app when user click on the link and try to load the pdf throught the Safari. This is not working because user has to relogin for viewing the application.
Check with child-browser plugin. But it does not provide the options like print/email.
It'll be really great if some one can help on this who has similar experience.
Thanks