Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Is there any program available to developers/website owners for a share in ad revenue for embedded videos, similar to how site owners can make money by showing google adwords?
The ads are linked directly with the account holder of the video so I believe this would not be possible. You would be displaying that video's ads and therefor generating revenue for the owner of the video and never see a cent yourself.
I have videos that have ads. I can control where the ads are shown, and also where the video is shown, but unless you come to a private agreement with the content producer for traffic driven to the video you wouldn't be able to receive any ad revenue.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 4 years ago.
Improve this question
I have an application where i need to take the mobile number of users upon registration, and then verify the phone number by sending a pin code to his number.
Is this against apple's policies?
No that is not against Apple's Policies, apps such as WhatsApp do this.
However, according to Apple's Human Interface Guidelines you should delay sign up as long as possible and also explain why such information is necessary for your app.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I know there is an affiliate program with iTunes that rewards you money if you drive a user of your app to go buy a song on iTunes store. Is it possible to query the iTunes Store beforehand, in an app, and perhaps play the 1:30 musical sample for a commercial purpose? Let's imagine shazam, which allows you to go buy a song on iTunes (and makes money from it): could they provide a 1:30 music sample of the song you just detected?
Why not. Apple provides APIs to query their content, even on iTunes. See documentation
You could easily make a query to the search iTunes store API, specifying audio
as media and then use the previewUrl, described as:
A URL referencing the 30-second preview file for the content
associated with the returned media type.
You can stream the music in your app before letting the user following the link to the store.
Possible library for that: SoundManager.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
Does it go against any sort of TOS with apple if you display ads in a free app, when that app requires an outside subscription service? Like netflix.
This isn't totally a programming questions, so if no one knows, or doesn't want to answer, is there a site or location I could go to in order to find out?
Apple has no restrictions against ads in free applications. There are several ad-supported apps which exist.
However, using location data of the user for advertising might lead to the app not being approved.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
we are developing iOS apps for several clients.
Not all of them have registered in the apple development program.
is it at all possible for us to publish the app using our account, but have their name and contact information display in the appstore.
No, thats not possible besides custom support and web URLs. But if your client is serious, they should be able to afford the $99 for the account. Are you sure that want to do this anyway? Its your account after all, so you show up with the App and all of its reputation and reviews etc. I wouldn't want to have my clients apps in my normal dev account.
Your company would be listed as publisher. But you will be able to put their URLs and support information and anything in the description area.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I need to get UDIDs of devices on which inApps from my app were made. Is it possible from iTunes connect or thru any API for developers?
Apple will not give you this information. The way they provide is to retrieve previous transactions made by the user on the current iTunes account. Apple would very much not like it if you were trying to limit the validity of the purchases to the devices not the user. You could have some analytics (flurry, google...) that keeps tracks this information but it is not usual practice, you should not attempt to identify individual users when building statistics on your app's usage.