Subversion Repositories SmartDukaan

Rev

Rev 30498 | Rev 30533 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30498 Rev 30529
Line 380... Line 380...
380
		LOGGER.info("UserId -> {}, Device Id -> {}", userId, deviceId);
380
		LOGGER.info("UserId -> {}, Device Id -> {}", userId, deviceId);
381
		FofoStore fs = fofoStoreRepository.selectByRetailerId(fofoId);
381
		FofoStore fs = fofoStoreRepository.selectByRetailerId(fofoId);
382
		double dist = 0;
382
		double dist = 0;
383
		HypertrackKey hyperTrackKey = hypertrackKeyRepository.selectByUserIdAndDeviceId(userId, deviceId);
383
		HypertrackKey hyperTrackKey = hypertrackKeyRepository.selectByUserIdAndDeviceId(userId, deviceId);
384
 
384
 
-
 
385
		LOGGER.info("hyperTrackKey {}" + hyperTrackKey);
385
		OkHttpClient client = new OkHttpClient();
386
		OkHttpClient client = new OkHttpClient();
386
 
387
 
387
		String authString = "Basic "
388
		String authString = "Basic "
388
				+ Base64.getEncoder().encodeToString(String.format("%s:%s", ACCOUNT_ID, SECRET_KEY).getBytes());
389
				+ Base64.getEncoder().encodeToString(String.format("%s:%s", ACCOUNT_ID, SECRET_KEY).getBytes());
389
 
390