Search results for

“nfc”

1,191 results found

Post

Replies

Boosts

Views

Activity

Step-by-Step Guide Needed for NFC Activation in Apple Wallet Pass
Hi everyone, I am working on creating an NFC-enabled Apple Wallet pass but have been unable to get the NFC functionality to work. While the pass itself adds to Wallet without issues, the NFC feature does not activate. Here’s a summary of what I’ve done: 1. Developer Setup: Registered a Pass Type ID in my Apple Developer account. Generated and installed the Pass Type ID certificate. Installed the latest WWDR certificate. 2. Pass JSON Configuration: My pass.json file includes the following NFC configuration: nfc: { message: Tap to unlock door, encryptionPublicKey: MY_ENCRYPTION_PUBLIC_KEY, payload: encrypted_nfc_payload } 3. Testing Results: When the pass includes the nfc field, it adds to Wallet but NFC does not work. If I remove the nfc field, the pass works fine (minus NFC, of course). What I Need Help With: 1. A step-by-step guide for correctly implementing NFC in Wallet passes, including details about encryption, key
1
0
873
Dec ’24
NFC/Felica to use Host Card Emulation support
I am developing an iOS app in which the device(iPhone) needs to act as an NFC tag using Felica so that an NFC reader could read the information present in this virtual tag (like person details). Currently Suica and Pasmo is being used for contact less payment but we ant to use the same technique but for our IOS app. Is it possible to achieve this ?
2
0
1.6k
Jul ’23
Bad user experience because of NFC timeouts
We are developing an app for the online identification function of the German National ID Card. https://github.com/Governikus/AusweisApp https://apps.apple.com/de/app/ausweisapp-bund/id948660805 Currently there are two NFC timeouts we are not able to influence because there is no API. A NFC Session has a maximum lifetime of 60 seconds, independent from any card communication. When a card was detected the connection will only last for 20 seconds. Combined there is also something like a worst case: The user presents the card 55 seconds after the session was started: The connection will only last for the remaining 5 seconds of the session. The identifications works as follow: The user clicks on a link on a website and our app will appear. After selecting access rights the NFC session is started. Sometimes the user start to search for their ID card now and this takes some time. When the 60 seconds are over we start a new session until there is a card or the user aborts. After establishi
2
0
999
Jul ’24
NFC Tags won't read after iOS 15.4 update
After updating to iOS 15.4 I can no longer read any NFC tags. I believe Apple Pay is working fine. Replication: Unlock iPhone, hold NFC tag to top back of phone (without case or other magnetic or metallic materials nearby). Default iOS behaviour should be to read the contents of a known working tag (works perfectly on an Android device) and display a popup to manage the tag information (e.g. Popup would ask permission to open Safari to open a web link programmed on a tag) 3rd Party Tools: Previous versions of iOS 15 beta allowed read and write of NFC tags using apps such as NFC and NFC Tools. I have used normal mode, compatibility mode, have attempted to (re)format the tag to no avail. When conducting a read or write using these tools a popup appears, but no tag can be read or written. Ready to Scan popup remains open. Further steps taken: Hard Reset: No effect
38
0
44k
Mar ’22
How to enable NFC in Application for developer mode?
I try some prjects for NFC samples, also try the official sample in this link: https://developer.apple.com/documentation/corenfc/building_an_nfc_tag-reader_app#3240401 My issue is that I can detect a tag from Shortcut App, but I can't detect anything in the offical App. My device is iphone 11 with ios 17.0.2 and iphone 11 with 13 with ios 16.5.1. Can some body help me about this? Thanks!
0
0
717
Dec ’23
Read Debit/Credit Card data using NFC
I am trying to find solutions past 4 days. but not getting any reference about NFC implementation in my app to read Debit/Credit card upon user consent? Can you confirm apple is provided any api for read Debit/Credit card using NFC or not. Tried with normal NFCReader but it reads only for normal tags but nothing with Visa/ MasterCard cards. Looking forward some help from you. Thanks
4
0
1.4k
Oct ’24
NFC Read/Write ISO15693 on not Ndef
I would like to know if it is possible to read/write on tag that are not formatted NFCForum (Ndef). I am especially concern with ISO 15693 tag. NFC Core with NFCISO15693Tag seems to be capable of iy but I couldn't find on the store any application that can do it (with new iphone SE 2020 and iOS14.1)
1
0
2.0k
Jan ’21
NFC reads once, then no longer works.
I am using iOS 14 beta 3. I read there was an issue with this in earlier iOS 13 betas. It seems to have reappeared with iOS 14? I create a personal automation in Shortcuts with an NFC tag. Works great the first time. Then it never reads it again. If I get an app that can read tags, it reads the tag, so I know the tag is working properly, it's just that the iPhone doesn't read it after the first time. Anyone else have this? I did submit feedback to Apple on iOS 14. Thanks! Dan
16
0
9.9k
Jul ’20
Get NFC Data Identity card
Hello, I have to create an app in Swift that it scan NFC Identity card. It extract data and convert it to human readable data. I do it with below code import CoreNFC class NFCIdentityCardReader: NSObject , NFCTagReaderSessionDelegate { func tagReaderSessionDidBecomeActive(_ session: NFCTagReaderSession) { print((session.description)) } func tagReaderSession(_ session: NFCTagReaderSession, didInvalidateWithError error: any Error) { print(NFC Error: (error.localizedDescription)) } var session: NFCTagReaderSession? func beginScanning() { guard NFCTagReaderSession.readingAvailable else { print(NFC is not supported on this device) return } session = NFCTagReaderSession(pollingOption: .iso14443, delegate: self, queue: nil) session?.alertMessage = Hold your NFC identity card near the device. session?.begin() } func tagReaderSession(_ session: NFCTagReaderSession, didDetect tags: [NFCTag]) { guard let tag = tags.first else { session.invalidate(errorMessage: No tag detected) return
0
0
293
Mar ’25
Reply to How Can I Enable NFC Functionality in an Apple Wallet Pass?
HI @DeveloperSquillion, You wrote: Could you provide a comprehensive list of required steps to enable NFC in an Apple Wallet pass, including any specific details on encryption, payload, and public key formatting? The pass containing an NFC payload must be signed with an Apple Value Added Services (Apple VAS) certificate to be ingested into Wallet. You can apply for this NFC certificate here: NFC Certificate Request https://developer.apple.com/contact/passkit/ Next, you wrote: Are there any additional configurations or settings that I might be missing? Besides the need for the VAS/NFC certificate, the pass metadata appears to be valid. Then, you wrote: Is there any official documentation or specific tools recommended for testing NFC-enabled passes? Once you're approved for usage of the NFC certificate, please request more information about testing NFC passes by responding to your confirmation email. Cheers, Paris X Pinkney |  WWDR | DTS E
Topic: App & System Services SubTopic: Core OS Tags:
Feb ’25
iOS 13.3 beta 2 — Safari NFC
I saw in the release notes the the latest release of iOS 13.3 beta 2 that Safari now supposedly supports NFC. However, after searching documentation, I don't see any references to these changes. Does anyone happen to have more information, I am very interested in testing this out for a feature we're building at my work.
0
0
385
Nov ’19
Step-by-Step Guide Needed for NFC Activation in Apple Wallet Pass
Hi everyone, I am working on creating an NFC-enabled Apple Wallet pass but have been unable to get the NFC functionality to work. While the pass itself adds to Wallet without issues, the NFC feature does not activate. Here’s a summary of what I’ve done: 1. Developer Setup: Registered a Pass Type ID in my Apple Developer account. Generated and installed the Pass Type ID certificate. Installed the latest WWDR certificate. 2. Pass JSON Configuration: My pass.json file includes the following NFC configuration: nfc: { message: Tap to unlock door, encryptionPublicKey: MY_ENCRYPTION_PUBLIC_KEY, payload: encrypted_nfc_payload } 3. Testing Results: When the pass includes the nfc field, it adds to Wallet but NFC does not work. If I remove the nfc field, the pass works fine (minus NFC, of course). What I Need Help With: 1. A step-by-step guide for correctly implementing NFC in Wallet passes, including details about encryption, key
Replies
1
Boosts
0
Views
873
Activity
Dec ’24
NFC/Felica to use Host Card Emulation support
I am developing an iOS app in which the device(iPhone) needs to act as an NFC tag using Felica so that an NFC reader could read the information present in this virtual tag (like person details). Currently Suica and Pasmo is being used for contact less payment but we ant to use the same technique but for our IOS app. Is it possible to achieve this ?
Replies
2
Boosts
0
Views
1.6k
Activity
Jul ’23
Bad user experience because of NFC timeouts
We are developing an app for the online identification function of the German National ID Card. https://github.com/Governikus/AusweisApp https://apps.apple.com/de/app/ausweisapp-bund/id948660805 Currently there are two NFC timeouts we are not able to influence because there is no API. A NFC Session has a maximum lifetime of 60 seconds, independent from any card communication. When a card was detected the connection will only last for 20 seconds. Combined there is also something like a worst case: The user presents the card 55 seconds after the session was started: The connection will only last for the remaining 5 seconds of the session. The identifications works as follow: The user clicks on a link on a website and our app will appear. After selecting access rights the NFC session is started. Sometimes the user start to search for their ID card now and this takes some time. When the 60 seconds are over we start a new session until there is a card or the user aborts. After establishi
Replies
2
Boosts
0
Views
999
Activity
Jul ’24
How does an NFC card reader read a card added to a wallet
Hello, I created an access card on Apple Wallet. What should I do to use the NFC card reader to read the information on the access card in the wallet?
Replies
0
Boosts
0
Views
775
Activity
Feb ’23
NFC Tags won't read after iOS 15.4 update
After updating to iOS 15.4 I can no longer read any NFC tags. I believe Apple Pay is working fine. Replication: Unlock iPhone, hold NFC tag to top back of phone (without case or other magnetic or metallic materials nearby). Default iOS behaviour should be to read the contents of a known working tag (works perfectly on an Android device) and display a popup to manage the tag information (e.g. Popup would ask permission to open Safari to open a web link programmed on a tag) 3rd Party Tools: Previous versions of iOS 15 beta allowed read and write of NFC tags using apps such as NFC and NFC Tools. I have used normal mode, compatibility mode, have attempted to (re)format the tag to no avail. When conducting a read or write using these tools a popup appears, but no tag can be read or written. Ready to Scan popup remains open. Further steps taken: Hard Reset: No effect
Replies
38
Boosts
0
Views
44k
Activity
Mar ’22
How to enable NFC in Application for developer mode?
I try some prjects for NFC samples, also try the official sample in this link: https://developer.apple.com/documentation/corenfc/building_an_nfc_tag-reader_app#3240401 My issue is that I can detect a tag from Shortcut App, but I can't detect anything in the offical App. My device is iphone 11 with ios 17.0.2 and iphone 11 with 13 with ios 16.5.1. Can some body help me about this? Thanks!
Replies
0
Boosts
0
Views
717
Activity
Dec ’23
Read Debit/Credit Card data using NFC
I am trying to find solutions past 4 days. but not getting any reference about NFC implementation in my app to read Debit/Credit card upon user consent? Can you confirm apple is provided any api for read Debit/Credit card using NFC or not. Tried with normal NFCReader but it reads only for normal tags but nothing with Visa/ MasterCard cards. Looking forward some help from you. Thanks
Replies
4
Boosts
0
Views
1.4k
Activity
Oct ’24
NFC Read/Write ISO15693 on not Ndef
I would like to know if it is possible to read/write on tag that are not formatted NFCForum (Ndef). I am especially concern with ISO 15693 tag. NFC Core with NFCISO15693Tag seems to be capable of iy but I couldn't find on the store any application that can do it (with new iphone SE 2020 and iOS14.1)
Replies
1
Boosts
0
Views
2.0k
Activity
Jan ’21
Is it possible to open App automatically on reading NFC?
I want to make my App to open when my NFC tags are around iPhone. I want to open my app without user interaction. Is it possible to open other Apps from my App even MyApp is in killed state.
Replies
0
Boosts
0
Views
727
Activity
Aug ’20
NFC reads once, then no longer works.
I am using iOS 14 beta 3. I read there was an issue with this in earlier iOS 13 betas. It seems to have reappeared with iOS 14? I create a personal automation in Shortcuts with an NFC tag. Works great the first time. Then it never reads it again. If I get an app that can read tags, it reads the tag, so I know the tag is working properly, it's just that the iPhone doesn't read it after the first time. Anyone else have this? I did submit feedback to Apple on iOS 14. Thanks! Dan
Replies
16
Boosts
0
Views
9.9k
Activity
Jul ’20
Get NFC Data Identity card
Hello, I have to create an app in Swift that it scan NFC Identity card. It extract data and convert it to human readable data. I do it with below code import CoreNFC class NFCIdentityCardReader: NSObject , NFCTagReaderSessionDelegate { func tagReaderSessionDidBecomeActive(_ session: NFCTagReaderSession) { print((session.description)) } func tagReaderSession(_ session: NFCTagReaderSession, didInvalidateWithError error: any Error) { print(NFC Error: (error.localizedDescription)) } var session: NFCTagReaderSession? func beginScanning() { guard NFCTagReaderSession.readingAvailable else { print(NFC is not supported on this device) return } session = NFCTagReaderSession(pollingOption: .iso14443, delegate: self, queue: nil) session?.alertMessage = Hold your NFC identity card near the device. session?.begin() } func tagReaderSession(_ session: NFCTagReaderSession, didDetect tags: [NFCTag]) { guard let tag = tags.first else { session.invalidate(errorMessage: No tag detected) return
Replies
0
Boosts
0
Views
293
Activity
Mar ’25
Reply to How Can I Enable NFC Functionality in an Apple Wallet Pass?
HI @DeveloperSquillion, You wrote: Could you provide a comprehensive list of required steps to enable NFC in an Apple Wallet pass, including any specific details on encryption, payload, and public key formatting? The pass containing an NFC payload must be signed with an Apple Value Added Services (Apple VAS) certificate to be ingested into Wallet. You can apply for this NFC certificate here: NFC Certificate Request https://developer.apple.com/contact/passkit/ Next, you wrote: Are there any additional configurations or settings that I might be missing? Besides the need for the VAS/NFC certificate, the pass metadata appears to be valid. Then, you wrote: Is there any official documentation or specific tools recommended for testing NFC-enabled passes? Once you're approved for usage of the NFC certificate, please request more information about testing NFC passes by responding to your confirmation email. Cheers, Paris X Pinkney |  WWDR | DTS E
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’25
iOS 13.3 beta 2 — Safari NFC
I saw in the release notes the the latest release of iOS 13.3 beta 2 that Safari now supposedly supports NFC. However, after searching documentation, I don't see any references to these changes. Does anyone happen to have more information, I am very interested in testing this out for a feature we're building at my work.
Replies
0
Boosts
0
Views
385
Activity
Nov ’19
iPod Touch supports the new NFC enhancements in iOS 13 beta?
Is the new iPod Touch support the NFC Read/write ? I want to test the NFC read / write in a real device.
Replies
1
Boosts
0
Views
3.0k
Activity
Jun ’19
NFC tag iOS 14 beta 2
The issue that occurred with iOS 13 beta 4 last year is repeating with iOS 14 beta 2. NFC tags can be read but the shortcut doesn’t run. However sometimes it doesn’t decide to work as it used to.
Replies
10
Boosts
0
Views
3.2k
Activity
Jul ’20