Is it possible to combine django-allauth with django-graphene? - python-3.x

I'm trying to learn how to create a Facebook login API using Django-allauth but my limited knowledge tells me that the library requires using the Django template engine to authenticate the user by providing the user with the correct {{ form }}.
So I'm not sure how to create an API version of this functionality using Django-graphene to login with Facebook on a React or Flutter app. Any advice or links to useful articles will be much appreciated. Unfortunately, I don't have a code example of what I've tried since I'm not sure how to go about it in the first place.

Related

I am trying to cerate rest api using core php and want to create login api

I am trying to create rest api using core php and want to create login api
using this package "docusign/esign-client": "^6.12"
any suggession thanks in advance !
I am trying to create rest api using core php and want to create login api
using this package "docusign/esign-client": "^6.12"
any suggestions thanks in advance!
Recommend that you go to https://developers.docusign.com/docs/esign-rest-api/quickstart/
Login (you will have to have a developer account) and choose PHP and the right-most package option.
that will download ready-made code using Auth Code Grant that you can use right away to do what you asked.

Pulling images from Delve in an SPFx web part

I have created a web part which will find the members of an Azure AD group.
I am hoping to display each members profile picture.
I do this by using this address for each member
https://sfeur.delve.office.com/mt/v3/people/profileimage?userId=joe.bloggs%40mytenant.com&size=L
This will work but ONLY if I open a browser to Delve before I run the code.
Is there a way to get this to work?
Thanks
P
The issue is authentication - if You don't visit Devle before there are no auth cookies available hence nothing will be displayed.
I recommend using Graph API to get user photo, You can find a tutorial here:
https://learn.microsoft.com/en-us/graph/api/profilephoto-get?view=graph-rest-1.0
You can also use a npm package to help You with it:
https://www.npmjs.com/package/mgwdev-m365-helpers
Hope this helps

Best way to integrate OpenId connect / (Keycloak) with Django and Django Rest framework

I'm looking for advice on the best way to integrate Django / Django Rest Framework with OpenId connect (we're using Keycloak but I think using the protocol is probably more flexible).
There seems to be several option out there, but it would be good to have something that works as seamlessly as possible with Django and DRF – so session and API authentication working like the baked in Django version, and ideally access to external logon screens if using admin/DRF API endpoint. What is straightforward to set up and well supported?
What I will ultimately be doing is trying to change an existing Django/React application, but for the purposes of this discussion let's assume it's a basic application something like the ones set up in the Django tutorial and Django Rest framework quickstart (https://docs.djangoproject.com/en/3.1/intro/tutorial01/ to tutorial01 and https://www.django-rest-framework.org/tutorial/quickstart/).
I hope that's enough as I fairly new to this – I can create some sort of simple application in Github if this isn't a clear enough basis for a discussion.
Any help would be much appreciated. Even better if you have an example (!).

How to access Google Classroom without API?

I'd like to automatize some processes that are not yet available through API(Google Classroom), like posting comments on announcements, seeing private comments on my work and so on. I have trouble accessing my account. I'd like the app to be able to run on a server. I'm currently working with node.js, but if there is an easier approach I'll gladly accept it (free if it's possible). Can you give me an example of how it's done because currently, I am struggling to find every button that needs to be clicked on?
Unfortunately, there are no methods right now to accomplish that. You can leave a feature request on Google Issue Tracker describing what methods you would like to use. Google engineers will study your case and, if applicable, they will develop the requested methods.
You could use something like Selenium with your language of choice (Javascript in this case) to automate the browser clicks.
This is however, not the best of ideas... To make Selenium log into your account you will need to hardcode your password somewhere.
Google services use Oauth for authentication, take a look at the Classroom API Getting-started for instructions on how to work with Google Classroom API.

User editable template/view - Node.js, Mongodb

Has anyone here an experience with writting an application, where the user is allowed to edit a template of his "profile" online? I mean custom css, html and js - like Tumblr allows that.
What is the best and secure way to do that? Is it better to store the template in a database or in a file?
I am trying to implement this feature with node.js and mongodb, but your experience from other frameworks/languages are welcome too!

Resources