Cloudream.cloud - Streaming & Download - File Hosting - Platform With Affiliate Program

Status
Not open for further replies.

Gabriel D.

Member
7
2021
0
40
Hi WJucntion.
We are Cloudream.cloud , one Streaming & Download platform without limits, file storage, backup and much more.

About:
  • We offer Unlimited Storage/Traffic.
  • No Premium Needed, Everything is Free.
  • No Download Speed Limits.
  • Legal Adult Content are Allowed.*
  • We Have Affiliate Program. (CloudPartners.club)

FAQ:
What is the minimum Payout:

- Minimum Payout is just $10 USD.

What is the Earning Rates:
- You can check our rates offer here.

How long do you host my files:
- Files will be deleted after 60 days of inactivity.

Where do you send Payments:
- Payments are made via PayPal for now.

*For adult content you need contact us via the appropriate contact form.

Contact/Support:
E-mail: cloudream.cloud@gmail.com
Web: cloudream.cloud

Good day,
Gabriel D.
 
18 comments
api ? there is no puplic api ...
and the "trash" function/folder is not working -> cloudream.cloud/drive/trash -> 404 error


and you should implement/activate remote upload
Post automatically merged:

i was really bored today and wrote a script to export all download links
this script checks if a download/share link exists, if not it creates a new one
at the end its saves the data in csv file with name and link column
attention: the script only export files data from the root folder and ignore all other folders

Code:
#powershell

$user_mail = "_MAIL_"
$user_password = "_PASSWORD_"

# $home -> user root folder e.g. C:\Users\Admin\
$out_file = "$home\cloudream_export.csv"
Write-Host "out_file ->" $out_file

$data_list = @()

$session = $null
$link_login = "https://cloudream.cloud/secure/auth/login"
$a_login = Invoke-WebRequest -Uri $link_login -SessionVariable session -Method "POST" -ContentType "application/json" -Body  ('{"email":"'+$user_mail+'","password":"'+$user_password+'","remember":true}' )

$XSRF_token = $null
$a_login.Headers["Set-Cookie"] | % {
    $header = $_
    if($header -match "(?<=XSRF-TOKEN=)(.*)(?=; expires)"){
        $XSRF_token = $matches[1]
    }
}
$XSRF_token =  [System.Web.HttpUtility]::UrlDecode($XSRF_token)

#get page_count
$link_page_count= "https://cloudream.cloud/secure/drive/entries?orderBy=updated_at&orderDir=desc&folderId="
$a_page_count= Invoke-restmethod -Uri $link_page_count -websession $session
$page_count = $a_page_count.last_page

$page_count = 1

1..$page_count | % {
    $page = $_
    write-host "load page" $page "of" $page_count
    $link_files = "https://cloudream.cloud/secure/drive/entries?orderBy=updated_at&orderDir=desc&folderId=&page=$page"
    $a_files = Invoke-restmethod -Uri $link_files -websession $session

    $a_files.data | % {
        $file = $_

        $link_share = "https://cloudream.cloud/secure/drive/entries/"+$file.id+"/shareable-link"
      
        #hide not found errors
        $ErrorActionPreference= 'silentlycontinue'
        $a_share = $null
        $a_share =  Invoke-restmethod -Uri $link_share  -websession $session
        $ErrorActionPreference= 'Continue'
        
        #no share link exist, create new one
        if($a_share -eq $null){
            $a_share = Invoke-restmethod -Uri $link_share -Method "POST" -Headers @{ "x-xsrf-token" = $XSRF_token  } -ContentType "application/json"  -Body "{`"allowEdit`":false,`"allowDownload`":true}" -websession $session
        }
      
        $link_download = "https://cloudream.cloud/drive/f/" + $a_share.link.hash

        $data_list +=  New-Object PSObject -Property  ([ordered]@{ "name"  = $file.name ; "link" = $link_download})
    }
}
$data_list  |  Export-Csv -Path $out_file -Delimiter ";"  -NoTypeInformation
Post automatically merged:

!!!!
edit: delete line with
"$page_count = 1"
in the middle of script
cant edit my own merged posts, sorry
 
Last edited:
api ? there is no puplic api ...
and the "trash" function/folder is not working -> cloudream.cloud/drive/trash -> 404 error


and you should implement/activate remote upload
Post automatically merged:

i was really bored today and wrote a script to export all download links
this script checks if a download/share link exists, if not it creates a new one
at the end its saves the data in csv file with name and link column
attention: the script only export files data from the root folder and ignore all other folders

Code:
#powershell

$user_mail = "_MAIL_"
$user_password = "_PASSWORD_"

# $home -> user root folder e.g. C:\Users\Admin\
$out_file = "$home\cloudream_export.csv"
Write-Host "out_file ->" $out_file

$data_list = @()

$session = $null
$link_login = "https://cloudream.cloud/secure/auth/login"
$a_login = Invoke-WebRequest -Uri $link_login -SessionVariable session -Method "POST" -ContentType "application/json" -Body  ('{"email":"'+$user_mail+'","password":"'+$user_password+'","remember":true}' )

$XSRF_token = $null
$a_login.Headers["Set-Cookie"] | % {
    $header = $_
    if($header -match "(?<=XSRF-TOKEN=)(.*)(?=; expires)"){
        $XSRF_token = $matches[1]
    }
}
$XSRF_token =  [System.Web.HttpUtility]::UrlDecode($XSRF_token)

#get page_count
$link_page_count= "https://cloudream.cloud/secure/drive/entries?orderBy=updated_at&orderDir=desc&folderId="
$a_page_count= Invoke-restmethod -Uri $link_page_count -websession $session
$page_count = $a_page_count.last_page

$page_count = 1

1..$page_count | % {
    $page = $_
    write-host "load page" $page "of" $page_count
    $link_files = "https://cloudream.cloud/secure/drive/entries?orderBy=updated_at&orderDir=desc&folderId=&page=$page"
    $a_files = Invoke-restmethod -Uri $link_files -websession $session

    $a_files.data | % {
        $file = $_

        $link_share = "https://cloudream.cloud/secure/drive/entries/"+$file.id+"/shareable-link"
     
        #hide not found errors
        $ErrorActionPreference= 'silentlycontinue'
        $a_share = $null
        $a_share =  Invoke-restmethod -Uri $link_share  -websession $session
        $ErrorActionPreference= 'Continue'
       
        #no share link exist, create new one
        if($a_share -eq $null){
            $a_share = Invoke-restmethod -Uri $link_share -Method "POST" -Headers @{ "x-xsrf-token" = $XSRF_token  } -ContentType "application/json"  -Body "{`"allowEdit`":false,`"allowDownload`":true}" -websession $session
        }
     
        $link_download = "https://cloudream.cloud/drive/f/" + $a_share.link.hash

        $data_list +=  New-Object PSObject -Property  ([ordered]@{ "name"  = $file.name ; "link" = $link_download})
    }
}
$data_list  |  Export-Csv -Path $out_file -Delimiter ";"  -NoTypeInformation
Post automatically merged:

!!!!
edit: delete line with
"$page_count = 1"
in the middle of script
cant edit my own merged posts, sorry
Hi, thanks for reporting.
Documentation for "api" can be found here -> API Documentation.
We are noticing some problems thanks to other reports. Our developer has already been warned and will fix everything as soon as possible, including the trash folder.
There is already a plan to implement remote upload and other essential functions.
We will review your script to correct any errors on our side.

Good day,
Gabriel D.
Post automatically merged:

Are you serious ?
If I did not understand your question. I apologize.
If you intend to export multiple download links at once this is currently not possible. You can only do this one link at a time. We will implement this feature in the near future. If your question refers to something else, please write more details. Thank you.

Good day,
Gabriel D. (Cloudream)
 
Last edited:
Hi WJucntion.
We are Cloudream.cloud , one Streaming & Download platform without limits, file storage, backup and much more.

About:
  • We offer Unlimited Storage/Traffic.
  • No Premium Needed, Everything is Free.
  • No Download Speed Limits.
  • Legal Adult Content are Allowed.*
  • We Have Affiliate Program. (CloudPartners.club)

FAQ:
What is the minimum Payout:

- Minimum Payout is just $10 USD.

What is the Earning Rates:
- You can check our rates offer here.

How long do you host my files:
- Files will be deleted after 60 days of inactivity.

Where do you send Payments:
- Payments are made via PayPal for now.

*For adult content you need contact us via the appropriate contact form.

Contact/Support:
E-mail: cloudream.cloud@gmail.com
Web: cloudream.cloud

Good day,
Gabriel D.
How much percentage video played to count a View
 
Status
Not open for further replies.
Back
Top