API which allows third party developers to reference an individual's DNA data from 23andMe in their own applications and tools.
Questions tagged [23andme-api]
11 questions
3
votes
2 answers
23andMe API error: 'No grant_type provided.' 'invalid_request' OAuth2
I'm authenticating with the 23andMe API with OAuth 2. I'm able to receive the code after the user grants access. I'm currently trying to send a post request to receive the access token. I continue to receive this error:
data:
{…

govgo
- 625
- 6
- 18
2
votes
2 answers
How to POST to exchange a 23andme auth code for a token
The 23andme web site has an API and they give the following instructions:
Send a POST /token/ request with these parameters (client_id and client_secret are on your dashboard):
curl https://api.23andme.com/token/
-d client_id=xxx \
-d…

Wayne Magor
- 23
- 4
1
vote
1 answer
23andMe API authentication via PHP
I am following the 23andMe API authentication guidelines and sending my users to 23andMe for authentication and authorization using this code:

haz
- 740
- 1
- 11
- 20
1
vote
2 answers
PHP code failing to authenticate with 23andme API
$client_id,
'client_secret' => $client_secret,
…

connoraw
- 173
- 1
- 2
- 11
1
vote
0 answers
Creating 33 URLs from 169 Values, without duplicates
I had previously used Excel for this, but want to create something, perhaps in Ruby, that can do this for me.
I have a list of 169 16-character-long alphanumeric values. They serve as unique identifiers of persons with whom I am sharing genomes on…

Phil Hobrla
- 115
- 8
0
votes
1 answer
Getting different results from API and 23andme's Raw Data
When I go into 23andme's "Your Raw Data" section on the webpage, I can look up the results for a certain SNP. I used rs6565703. The data returned was:
Genes Marker (SNP) Genomic Position Variants Your Genotype
DOC2B rs6565703 …

Jimboslice
- 41
- 8
0
votes
1 answer
{"error_description": "Access token has insufficient scope: basic, names, email", "error": "insufficient_scope"}
I have set permission for Email in Authorisation request.
https://api.23andme.com/authorize/?redirect_uri=http://localhost:5000/receive_code/&response_type=code&client_id=""&scope=email rs123&select_profile=true
Using this url I have authorise the…

Kseniia Ryuma
- 1
- 1
- 2
0
votes
1 answer
Exchange auth code for a token fails with 23andMe API
The 23andme web site has an API and they give the following instructions:
Send a POST /token/ request with these parameters (client_id and
client_secret are on your dashboard):
curl https://api.23andme.com/token/
-d client_id=xxx \
-d…

Kseniia Ryuma
- 1
- 1
- 2
0
votes
1 answer
Does every OAuth2.0 API support "sign-in with" functionality?
Most of my users already use an service called 23andMe, which supports OAuth2.0.
I want to let my users register for my app by authenticating with this service. This should be easy since I can pull their email address over api once they…

Kermit
- 4,922
- 4
- 42
- 74
0
votes
2 answers
23 and Me API with Guzzle 401 Invalid Token
I'm trying to connect users in my php app to 23 and Me api but having issues when trying to use the provided token. I can successfully get the token with the following http action:

Kevin Compton
- 716
- 2
- 9
- 22
0
votes
1 answer
Is there a 23andMe oauth2 example for iPhone?
I'm trying to use oauth2 to get data from 23 and me, but keep getting "bad request" codes. This is my first time working with OAuth2 and I'm not sure what I'm doing wrong.
When I use AFOAuth2Client, I get error code 400:
AFOAuth2Client* oauthClient…

Alex Stone
- 46,408
- 55
- 231
- 407