问题标签 [apple-id]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ios - 用户试图购买应用内购买,但 Apple 一直询问他的密码?
我的应用中有应用内购买。我每天都会买很多东西(太棒了!)。但是我今天有一个用户联系我说他正在尝试购买。他点击进行购买,Apple 要求输入他的 Apple ID 密码——这是有道理的。但是,当他输入密码时,它只是再次要求输入密码。知道为什么会发生这种情况或如何解决吗?我不认为这是一个编码问题,因为应用内购买既适用于沙盒,也适用于许多用户。
app-store - 提交到应用商店时更改名称
我正在开发一个应用程序,但未满 18 岁,我不允许拥有自己的开发者帐户,所以我使用了我父母的帐户。我不希望提交的应用程序在他们的名字下,所以有没有办法在提交到应用商店时不在苹果 ID 上列出名字?
macos - 无法将 Apple ID 更改为 App Store
我使用 Mac OS:10.9.2。当我将 Xcode 更新到 5.1.1 时,App Store 会询问苹果 ID。我已经注销了当前的 Apple ID 并登录了我的帐户,但它也询问了旧 Apple ID 的密码(我无法点击 Apple ID 字段来更改名称)。请帮我更改苹果ID或删除旧的。
编辑
最后,我可以解决这个问题。我将删除应用程序中的所有 Xcode 版本。然后用我的 Apple ID 去 App Store 安装新版本的 Xcode。
ios - 如何通过 CloudKit 检索登录用户的 AppleID?
我想出了如何检索登录用户的名字/姓氏。有没有办法获得AppleID?!
ios - 用户的 AppleId 在 iphone 中以编程方式
这是否可以获得当前登录设备的用户的苹果 ID?实际上,我实现了应用内购买,并在购买应用时获得了用户的设备 ID 和 Apple ID。
ios8 - Testflight iOS8 - 非 Apple ID 帐户
我刚刚在我的个人 iphone 6 上安装了最新的 testflight 应用程序。
我们有一个公司的 testflight 用户登录,它与我们的个人帐户完全分开。
但是,当我启动 testflight 应用程序时,它想使用我的 Apple ID——它无法访问任何应用程序,因为它们都链接到组织电子邮件。
有没有一种方法可以让我注销并使用我的组织帐户来访问这个单一的应用程序?
谢谢
ios - 使用通配符 ApppleId 的 iOs 克隆应用程序
我已经在 Xcode 中创建了一个 iOs 应用程序,现在我想通过更改徽标和更改应用程序名称来克隆它。那么哪个更好,
来自"Explicit App ID"或"Wildcard App ID"。谁能帮我选择。
谢谢!
ios - 如何在没有 Apple Developer 帐户的情况下在 xcode 6 中创建 ipa?
需要.ipa
为 Ad-Hoc 分发生成文件。客户只提供了证书、私钥和配置文件,这些文件足以在.ipa
Xcode 5 之前创建。但是在 Xcode 6.1 中,当我导出时Save For Ad Hoc Deployment
它会给出消息
有.ipa
没有没有开发者帐户凭据的创建方法?
in-app-purchase - sandbox / login alert showing up endlessly
I am trying to implement in-app-purchases in my app. For a while now, I keep on getting following alert (appears a good 60 times or so).
... ah SO just tells me, I may not post a picture because I'm below 10 reputation ... well, sorry, no screenshots then:
- alert title: Anmeldung erforderlich
- alert body: Tippen Sie auf "Weiter" und melden Sie sich an, um nach verfügbaren Downloads zu suchen. [Environment: Sandbox]
- alert buttons: "Abbrechen" and "Weiter"
Sorry I was not able to get this alert in English, even though I set language and region to English. (The alert is German btw).
---- if I'm writing out the alert I might as well attempt to translate it here:
- alert title: Login Required
- alert text: Choose "OK" and login in order to check for available downloads. [Environment: Sandbox]
- alert buttons: "cancel" and "Continue"
On choosing "Weiter" ("Continue" / "OK") I am requested to enter my apple ID and my password, but it if I do so nothing noticeable seems to happen. I tried to track down when exactly the alert starts showing. It seems to happen on calling the [SKPaymentQueue defaultQueue].
Worse than that, after exiting the app this alert keeps on popping up in other apps too. I've read some SO posts about Sandbox Testers go bad and cause similar errors. This might well be, but this alert does not only show on my Test-Account, my normal account, but also on other devices if the app is installed via testFlight.
As for the app and the IAP: The IAP is a renewable subscription, no Apple hosted content, I'm only using Apples StoreKit. Further I made sure that all pending transactions are finished.
Edit: So after trying out different things I could find out that much: In my app there was a mixture of approaches to the IAPs. Partly I was using the old API and mixed it with Apples new SKPaymentTransactionReceipt for validation. I now omitted all the code regarding the receipts. This is a shame since I need the expire date of the receipts and transactionReceipts have been deprecated. But the effect this change created is, that I do not get this alert as often any more. No it only shows in my own app if I'm using a sandbox test user and then only once. It doesn't help me understand the problem and it's not a permanent fix, but I hope this helps someone else encountering this alert a little at least.