Questions tagged [pcloud]

Questions related to integration with pCloud's cloud storage service or interacting with pCloud files programmatically, via the pCloud API or pCloud SDK.

pCloud is a cloud-based application and service for creating and managing cloud storage and files. The service provides an API to add pCloud's functionality in your own application.

Important URLs for the pCloud SDK:

22 questions
0
votes
1 answer

pCloud Your download expired. Try previous step again

i use pcloud infrastructure for users' uploading files on our website. however i am having problems with the api. In the download function in file.php $ fileLink = $ this-> getLink ($ fileId); we are using.but after a while to users say "Your…
Umut Can Arda
  • 81
  • 1
  • 8
0
votes
0 answers

pyinstaller unable to fetch required module

I am trying to make a file uploader using pcloud. While doing so when I run my python code from Pycharm, it works perfectly fine. But when I convert it into exe using pyinstaller, it gives me "fatal error - failed to execute script" here's my code…
0
votes
0 answers

pCloud API upload file android studio

I'm trying to use pcloud API from github Can some one tell me how to upload local file from phone with this api? I found that i should use: ApiClient apiClient =...; File localFile = ...; RemoteFile uploadedFile = apiClient.createFile( …
MArio
  • 102
  • 1
  • 11
0
votes
1 answer

JavaScript pCloud API call to fetch userinfo gives an error

While calling the api from JavaScript This HTTP request works fine https://api.pcloud.com/userinfo?username=xxxx@gmail.com&password=xxxx In the below code I want to call via JavaScript var user='email loggin'; var password='password of…
ben
  • 470
  • 3
  • 11
-1
votes
1 answer

Python 3: I have the issue : ValueError: not enough values to unpack (expected 2, got 0) in a really simple script:

I want to upload a file with pcloud here is my code : import requests url = 'https://api.pcloud.com/uploadfile' path = 'C:\\Users\\MyName\\Desktop\\Folder\\log.txt' files = {open(path, 'rb')} data = {'username': 'emailadress@gmail.com', 'password':…
Sarlay
  • 15
  • 4
-1
votes
1 answer

My site http://www.kreativekouples.com/videography/ Has a load of videos that are hosted on pCloud but when showcasing on my website it looks odd as they are all black previews. Can I upload a thumnail photo like YouTube allows on their…
Bini
  • 33
  • 1
  • 3
-1
votes
1 answer

Error while downloading %username%.txt from web server using vbscript

I have a file admin.txt on pcloud server and my pc user name is admin.so i tried to get file admin.txt with following vscript. Dim myURL Dim password Dim username Dim strUserName Set objShell = CreateObject("WScript.Shell") Set wshShell =…
rohit7373
  • 5
  • 4
1
2