CopyPastor

Detecting plagiarism made easy.

Score: 1; Reported for: Exact paragraph match Open both answers

Possible Plagiarism

Plagiarized on 2025-07-05
by Whoami Whoami

Original Post

Original - Posted on 2025-01-23
by Issam Alzouby



            
Present in both answers; Present only in the new answer; Present only in the old answer;

you probably have 2 instance of of your google account set up. one in your settings.py and the other one in your django admin console.
best you delete anyone you think you should delete and make migrations and migrate
#settings.py (you could delete this and leave the one in the admin)
```python

SOCIALACCOUNT_PROVIDERS = { 'google': { # For each OAuth based provider, either add a ``SocialApp`` # (``socialaccount`` app) containing the required client # credentials, or list them here: 'APP': { 'client_id': '123', 'secret': '456', 'key': '' } } }
```
Removing this: ```python SOCIALACCOUNT_PROVIDERS = { 'google': { # For each OAuth based provider, either add a ``SocialApp`` # (``socialaccount`` app) containing the required client # credentials, or list them here: 'APP': { 'client_id': '123', 'secret': '456', 'key': '' } } } ``` From the `settings.py` file, and *only keeping the one set up in the `Django` dashboad* worked!

        
Present in both answers; Present only in the new answer; Present only in the old answer;