Questions tagged [tapkey]

Questions about interacting with the Tapkey Smart Lock API or SDK

Tapkey is an open platform for mobile access control—with an open API, Mobile and Lock SDK to integrate smartphone-based access into existing apps and locks.

Use this tag for questions about interacting with the Tapkey Smart Lock API or SDK.

51 questions
0
votes
1 answer

Bind Locks Offline scope

Im currently integrating the TapKey side of a DOM lock integration and I'm having trouble with a specific scope required by…
0
votes
1 answer

Login credentials for the Tapkey API

How can I generate the login credentials for the Tapkey API? The new security system provider who installed the locks and set up the Tapkey App doesn't know how to do it. Our booking system needs those credentials. Example: enter image description…
0
votes
1 answer

TapKey failed to start foregroundScan

I use tapkey sdk to open locks in my Flutter App, the app was working fine I was able to open locks when all the sudden I started to received this error on iOS (bluetooth permissions are granted): [CoreBluetooth] XPC connection invalid and [general]…
czapelM
  • 3
  • 2
0
votes
1 answer

HealthStatuses are all reported as Invalid or Outdated

we manage a sizeable number of locks in our accounts. Recently we implemented a lock health overview using the BoundLocks ?expand=healthStatuses endpoint as described by…
0
votes
1 answer

Tapkey Mobile SDK missing build when using Objective C for iOS

I get this error message when trying to use the Tapkey Mobile SDK for iOS in a Objective C AppDelegate: No visible @interface for 'TKMServiceFactoryBuilder' declares the selector 'build' This is the code I use to initialize the…
Tarik Huber
  • 7,061
  • 2
  • 12
  • 18
0
votes
1 answer

TapKey Mobile SDK can't find a lock

I am developing a app in flutter and I am having a problem with detecting a locks via tapkey mobile sdk. I am login users with Token Exchange method, I have created new Identity Providers. I am creating a new user via a cloud function…
czapelM
  • 3
  • 2
0
votes
1 answer

How to solve access blocked by CORS policy (Tapkey Web API)

When I try to connect to Tapkey Web API with Client Credentials, I get the following error message: "Access to fetch at 'https://login.tapkey.com/connect/token' from origin 'null' has been blocked by CORS policy: No 'Access-Control-Allow-Origin'…
Benwa
  • 11
0
votes
1 answer

How do I log in so I can open my Tapkey Lock?

I don't know, how to authorize my app to open the tapkey lock. I have this code, but I dont know what to insert into STRING: userManager.logInAsync(STRING, CancellationTokens.None) Do you have any idea how I can get the User Id or a Token for…
DasShark
  • 3
  • 1
  • 4
0
votes
1 answer

Php integration with tapkey

Do you have any php exemple integration to grant right for someone for one year on a door? I have read your GitHub but don't see any information about php exemple. Thank you for your help
Chatis
  • 47
  • 2
  • 11
0
votes
1 answer

Owners returns an empty list

I'm making a request to the tapkey endpoint to get owners associated with a particular acccount, but on checking owners, it's an empty list: const token = await this.getAuthorizationCodeToken() try { const {data: owners} = await axios.get( …
0
votes
0 answers

What API I need to use in my case with TapKey integration?

I have a few questions regarding Tapkey integration into our marketplace. How to get a list of his locksmiths deposited at Tapkey? What API need to use? I need to send the Id of the lock to Tapkey. What endpoint do I need to us for this?
0
votes
1 answer

Creating users, and grants

I'm creating users and issuing grants to them. I have a limitation with token exchange since these users belong to a different ownerAccount. I'm doing something similar to what is described here…
0
votes
1 answer

Issue in Triggering lock

Hi I am facing an issue when triggering the tapkey lock it scans for the lock and successfully scans it. The when I trigger unlcok againsat the PhysicalLockId I get the lock blinks red and I get message Unauthorized. Using Token Exchange Mechanism,…
0
votes
1 answer

Tapkey Token Exchange returns access token for invalid user

regarding tapkey token exchange flow: when exchanging a jwt token for an access token through https://login.tapkey.com/connect/token api, I get an access token response, even the user does not exist. My jwt token contains of the following:…
0
votes
1 answer

Tapkey Token Exchange returns 400 bad request invalid_grant

regarding tapkey token exchange flow: when exchanging access tokens through https://login.tapkey.com/connect/token api, I get error code 400 with error message invalid_grant I am aware of a similar question and the solution in: Tapkey returns 400…