Coder Social home page Coder Social logo

Comments (2)

bohomi avatar bohomi commented on May 28, 2024

I've spent some time trying to get my head around this, perhaps it helps. The docs for authorizationStatusFor in this repo might not be fully accurate as it should return a HKAuthorizationStatus (ie. notDetermined, sharingDenied or sharingAuthorized) which is never actually used in the repo past the definition. However, I found that in my case authorizationStatusFor returns the right value.

From the docs it seems that Apple doesn't allow to see if a user has denied a READ permission so perhaps in your case you are looking at a read permission?

In my example I am requesting WRITE permission only for mindful minutes and I can see that authorizationStatusFor returns 0, 1 or 2 according to the Enum HKAuthorizationStatus in the Apple doc.

 const [
    status, // this is of type `HKAuthorizationRequestStatus` (ie. unknown, shouldRequest, unnecessary)
    requestAuthorization,
  ] = HealthKit.useHealthkitAuthorization(
    [], 
    [HKCategoryTypeIdentifier.mindfulSession], // only asking for WRITE permission
  );
  
const authorisationStatus = await HealthKit.authorizationStatusFor(
    HKCategoryTypeIdentifier.mindfulSession,
); // this will be of type HKAuthorizationStatus (ie. notDetermined, sharingDenied or sharingAuthorized)

from react-native-healthkit.

josh- avatar josh- commented on May 28, 2024

Opened #64 which should resolve this 🙂

from react-native-healthkit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.