skip to Main Content

Javascript – How to convert an image url to File object from Google oAuth response?

In my React project I have a google oAuth API which I'm retrieving the google image url from the response: const userInfoResponse = await axios.get('https://www.googleapis.com/oauth2/v3/userinfo', { headers: { Authorization: `Bearer ${googleResponse.access_token}` } }); const google_image = userInfoResponse.data.picture; console.log(google_image); //https://lh3.googleusercontent.com/a/ACg8ocKjThtaGf5USLuL2LBMBuYxfDG0gDdM-RLA_I__UvNI3p_2Hlk=s96-c Now…

VIEW QUESTION

Html – The image is not being stored in the media folder in Django, but the database contains the image name

views.py employee = Employee.objects.create( user=request.user, # Assigning the current user first_name=request.POST.get('employee_firstname'), middle_name=request.POST.get('employee_middlename'), last_name=request.POST.get('employee_lastname'), email=request.POST.get('employee_email'), land_phone_number=request.POST.get('employee_landphone'), mobile_phone_number=request.POST.get('employee_mobile'), gender=request.POST.get('gender'), hire_date=request.POST.get('hire_date'), position=position, address=address, date_of_birth=request.POST.get('dob'), img=request.FILES.get('imgg'), # Make sure you're using request.FILES for image files ) models.py class Employee(models.Model): img = models.ImageField(upload_to='pics') settings.py STATIC_ROOT…

VIEW QUESTION

Import json file on python

I try to import a json file on python with : with open('C:/Users/angel/message.json', 'r') as file: data = json.load(file) I have the error : FileNotFoundError Traceback (most recent call last) Cell In[1], line 1 ----> 1 with open('C:/Users/angel/message.json', 'r') as…

VIEW QUESTION

Laravel File Not Writing

this is my laravel code, however im having problems writing down in the locales files. If i only right the title it works, however if i also add the description only the description is written and the title ignored. I…

VIEW QUESTION
Back To Top
Search