Finally I was able to find out the issue, the request was failing due to some issue in Axios interceptor, which occurring only in android
Best posts made by technowebs
-
RE: Axios request getting cancelled in android
Latest posts made by technowebs
-
RE: How to Troubleshoot Firebase Cloud Messaging
@marknigh Hi, Can you please share your thought on how to get the device token…I am trying below code, unfortunately, it’s showing getToken of undefined
const fcm = new FCM(); fcm .getToken() .then(r => console.log(`Token ${r.token}`)) .catch(err => console.log(err));
-
RE: Securing google map API, in cordova and web
@suleiman_as I am facing problem with android apps, PWA is not a solution for me
In browsers it’s working perfectly. I also tried cordova-plugin-googlemaps, unfortunately that’s also not working in my project. Only a empty map area is rendering, nothing is appearing, no console errors.
-
RE: Securing google map API, in cordova and web
@suleiman_as got it, but I am not understanding how to implement interactive google map from backend
-
RE: Securing google map API, in cordova and web
@dobbel Thanks I will try it, and check if it solves the security issue.
My current plugin working fine in Android too when I remove the restriction (SHA1) from the API console. May be Cordova specific plugin solve the issue. I will test and update
Thanks
-
RE: Securing google map API, in cordova and web
@dobbel I am using cordova, and getting RefererNotAllowedMapError
-
Securing google map API, in cordova and web
Hi all,
I am using quasar-google-maps for my project(Web, Android, iOS), which is working fine without API restrictions.
It’s working in the web with HTTP Referrer restriction. But, in mobile device it’s showing error, I tried SHA1 restrictions for android. I am not sure if there anything needed to add in config.xml or not?
If anyone has secured api keys in android, please share some thought on this.
Thanks
-
RE: Can anyone here have a tutorial how to create quasar framework with sqlite3 CRUD ?
@cynderkromi Have you found any tutorial or sample code? I need to develop an app with SQLite that works on mobile and desktops(Windows or Linux).
-
mapMutation with dynamic store
I am writing a custom component so that I can reuse it with different stores. I am trying to use mapMutation like this, where storeName is a prop passed from the parent component
methods: { ...mapMutations(`${this.storeName}`, ['someVariable']), }
But, this is generating the below error,
Uncaught TypeError: Cannot read property ‘storeName’ of undefinedAny suggestion will be helpful, thanks
-
RE: Is there any option to display two consecutive months in QDate?
@dobbel
Thanks for your suggestion. The Q-calendar is really very useful. Using a single field was my client’s preference, however, I am planning to use two QDate fields. -
Is there any option to display two consecutive months in QDate?
I am developing a hotel booking site, where I want to display two consecutive months so that user can easily select checkin and checkout date. I am using QDate with range selection(v1.13+).