Questions tagged [deviantart-api]

the API provided by the online art gallery and community DeviantArt.

7 questions
6
votes
1 answer

Obtain Deviantart Deviation ID / UUID from page URL

I was looking at the Deviantart API to see what you can do with it . A lot of requests require you to provide a deviation id to work with. Take for instance adding a deviation to favorites ( in Collections -> Add deviation to favorites above, I…
Pinkie Pie
  • 688
  • 7
  • 15
3
votes
3 answers

OAuth and redirect_uri in offline Python script

I'm currently trying to write a Python script that will use Deviantart's API to automatically shuffle my favourites. To do that I need to first log in in my script. Deviantart uses OAuth2 authentication, which requires a redirect_uri, which as I…
Mate de Vita
  • 1,102
  • 12
  • 32
2
votes
3 answers

User authentication in DeviantArt

I'm trying to make an application that can help me post art in various platforms at once in a timed manner. So what I'm trying to do is just get the authentication code from DeviantArt using the Authentication Code Grant from their API in PHP, then…
1
vote
1 answer

python-requests: What is different here between my python script and their curl command?

There is some api endpoint, which i try to send POST request with code like this import requests url = 'https://deviantart.com/api/v1/oauth2/collections/folders/create' headers = {'Content-Type': 'application/json'} data = {'folder':…
1
vote
1 answer

Oauth2 GET request with access token returns 403 in NodeJS

I'm currently trying to develop a node application that consumes DeviantArt API. All requests must go through Oauth2, so I decided to go with client_credentials flow as the code is going to be all private. So, once I registered my application in…
1
vote
1 answer

Deviantart API integration

we are searching for someway to integrate our own deviant art galley in our android app. Below is our scenario explained 1) we have a deviantart gallery with a lots of people daily using it. 2) So we want to know any possible way to integrate the…
unitedartinc
  • 738
  • 1
  • 6
  • 25
0
votes
1 answer

How to make a greasemonkey script that clicks a button on page when a key is pressed?

I am trying to make a script for DeviantArt that clicks "Remove from notifications" when I press the delete key. Deviantart allows the user to follow artists and provides any new artwork under a common notification system. When you click some…