Received the message below from Mozilla AddOn editors with regards to our new version of our add on:
"Your add-on, iGive Button 5.0.0.9, has been reviewed and is now signed and ready for you to download at https://addons.mozilla.org/en-US/developers/addon/igive-button-1/versions."
When I go to that link, I'm supposed to be able to download the reviewed and now signed add on. To try to do that, I clicked on the link which lets me manage the add on. At the top of the Manade Add On screen there is a link to the file (igive_button-5.0.0.9-fx.xpi): https://addons.mozilla.org/firefox/downloads/file/352648/igive_button-5.0.0.9-fx.xpi?src=devhub
However, when I click that link I get a "404 Not Found" error.
How do I get the signed add-on so we can distribute it from our web site?
Try for the sources in
about:config
and search for browser.dictionaries.download.url
verify the sources of the apps is correct
Did Mozilla send you a link to your preliminarily approved addon? When you click that link it takes you to developer hub. Under current versions there should be a link to your reviewed addon. Click that link to go to the management page for your addon. Near the top of this page you should see an element called "files" with your extension file shown as a link. You should be able to click that link to download your file.
Related
I need to open my app when we click on skip this form button which is in stripe page... here if i got app link then my backend team will add that link but.. how to make my app link
how to create my project app link in ios swift to share backend team to open in browser. please guide me
First of all to launch your application you should have an URLScheme defined for your application:
Please check out this Apple's official documentation to understand how it's done.
Secondly, in your case to your launch on tapping Skip this form you have to open the URL Scheme defined for your app.
For eg. IF the URLScheme for the app is defined as myStripeApp
The action on the page should be trigger something like below
<a href= myStripeApp://>Open my Stripe App</a>
I am trying to integrate More Apps button inside my app. When user press this, I want to navigate to App Store and open my developer's app page. Expecting to work iOS 8 and above. If anyone did this before, please give me solution. Thank you in advance.
This can be done by simply having the app open a link. Now this link depends on your developer account. I cannot tell you what your link will be. However, it will look something link this:
https://itunes.apple.com/us/developer/id(some id here)
Note that the id is NOT your developer team ID. I really don't know what this id is. You can find it by navigating to one of your apps on the website version of the App Store called iTunes Preview. Simply go to google and search up one of your app's names like so:
AppName by Muzammil
Once you have opened this page, you will see the link "more by this developer". Click this, and copy the link of that page. Then you can just have your app open that link to show your list of apps on the App Store.
Here is the code to open a link just in case your need it:
let yourDeveloperURL = URL(string: "https://itunes.apple.com/us/developer/id(some id here)")!
UIApplication.shared.open(yourDeveloperURL, options: [:], completionHandler: nil)
Hope this helps!
If you want to check if your user has Gmail (so you can switch to Gmail to send an email) you can see if they can open "googlegmail:///co?to="
Is there something equivalent for Google's new app, Google Inbox?
I tried "googleinbox:///" but it didn't work.
Is there a place where you can find these links?
Tried: http://handleopenurl.com/, but doesn't even have Gmail (EDIT now this site is dead.)
Thanks
The Info.plist in the Inbox app lists 4 URL Schemes it will respond to:
inbox-gmail
inbox-gmail-x-callback
com.google.sso.296495646338-v31uuqp2kboh7qfi8jh5oga1lk1lb5sj
com.google.sso.294296358152-6s4pqed0qa6sk3m3k2pcmsu2jidh8n5u
The last two are most likely for single sign on callbacks, and the second is probably used for returning to Inbox after Inbox itself does an [UIAppliaction openURL:] to another Google app (e.g. Google Maps). I've tested "inbox-gmail" and it does open the Inbox app.
To open Inbox and compose an email you use the same url as gmail, but without the triple forward slash:
googlegmail:///co?to={email}&subject={subject}&body={body}
inbox-gmail://co?to={email}&subject={subject}&body={body}
Here's how you can access Info.plist for Inbox or any other app on the App store
Download the app in iTunes on your Mac
Go to the "My Apps" tab, right click on the app and choose "Show in Finder"
Right click on the app file and "Open with" -> "Archive Utility"
Open the extracted folder. Open "Payload" folder.
Right click on application and choose "Show Package Contents"
You've now got access to the Info.plist for the app and all the other resources: image, sounds, .strings, etc.
I used to have my users add my app by clicking a link that was emailed to them, or by using the add page tab dialog. Both are described here: http://developers.facebook.com/docs/appsonfacebook/pagetabs/
As of Friday (3-Aug-2012) neither of these seem to be working. The user simply sees a page that says, "An error occurred. Please try again later." with no further explanation. Even clicking the example URL on the above mentioned page produces the same error. I get this error for any app, while signed on with any facebook profile.
Has anyone experienced this, and if so, do you know what needs to be changed so that it will work again?
This commonly happens when your app is missing settings in the Page Tab section of the Basic (Page Tab URL, Secure Page Tab URL) settings.
It will also happen if your app has Sandbox mode enabled.
I've filed a ticket to get the example link on that documentation page corrected (thanks).
In our Rails app that runs in Facebook canvas, we have a workflow where a logged in user can build a document and then download it.
When the file is ready we show a link to it. This is just a Rails action that renders using send_file in dev or head (with proper NGINX config) in production. This part works fine.
In order to have the file start downloading without opening a new browser tab, we had the link target an empty iframe.
This was working, but a while back, presumably due to a security change by Facebook, our link stopped working. The JavaScript errors show:
Refused to display document because display forbidden by X-Frame-Options.
Users can still open the link in a new tab and it will download the file and a quick fix is to make the link open a new browser tab, but that isn't as good of a user experience.
We tried changing the X-Frame-Options in the headers and/or using meta tags, but this is canvas (running in an iframe), so that just stopped those views from displaying.
I also tried this form solution, but it didn't do anything (I could have been doing it wrong).
Is there any way we can build a button or link that will start the file download without opening a new browser tab?
Do you need to set the target at all? With no target set would it not trigger a file download popup in the browser, but leave the current browser window/tab on the same content?