Problem
Using Javascript SDK, its generating URL below with 404 errors
GET https://sdk.split.io/api/mySegments/ 404
Root Cause
The URL https://sdk.split.io/api/mySegments/ is missing the key id which is why we are seeing 404 errors. For example, if the key ID (or customer ID) is set to 8879, then this URL will look like:
GET https://sdk.split.io/api/mySegments/8879
Solution
Make sure to specify the key or customer ID correctly in the factory initializer line or when fetching client object line:
var factory = splitio({
core: {
authorizationKey: 'YOUR_API_KEY',
key: 'CUSTOMER_ID',
trafficType: 'TRAFFIC_TYPE'
}
var user_client = factory.client('CUSTOMER_ID', 'TRAFFIC_TYPE');
Comments
0 comments
Please sign in to leave a comment.