Keep2Share.cc - Trouble free file sharing! Wowzers! It’s super easy!

11,089 comments
Last edited:
Hello!
In any business, refunds are part of the business. Unfortunately, the business you are in is no exception. We lose money on refunds just like you.
 
Bring back the insurance, please
You asked about this here: https://www.wjunction.com/threads/k...s-its-super-easy.193575/page-548#post-2534586
And I answered you here: https://www.wjunction.com/threads/k...s-its-super-easy.193575/page-548#post-2534588

I would like to ask you to communicate without flooding and repeating questions to which you have already received an answer or the answer is in the FAQ https://moneyplatform.biz/faq. Besides you and me, there are a lot of other partners in this thread, let's respect them too. Thank you!
 
Is it possible to get thumbnail image from the api?
-


Code:
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Keep2Share Files</title>
    <!-- Bootstrap CSS -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
</head>

<body>
    <div class="container">
        <h1 class="mt-5 mb-4">Keep2Share Files</h1>
        <?php

        require_once('Keep2SAPI.php');

        $apiToken = 'myToken';

        $api = new Keep2ShareAPI();
        $api->access_token = $apiToken;

        // Validate token
        $validateResponse = $api->validateToken();

        if ($validateResponse['status'] == 'success') {
            echo "<p class='alert alert-success'>Token validation successful.</p>";

            // Function to recursively fetch files within folders
            function fetchFiles($api, $parentId = null)
            {
                $response = $api->getFilesList($parentId);
                if ($response['status'] == 'success') {
                    $items = $response['files'];
                    foreach ($items as $item) {
                        if (!$item['is_folder']) {
                            echo "<li class='list-group-item'>" . $item['name'] . "</li>";
                        } else {
                            fetchFiles($api, $item['id']); // Recursive call for subfolders
                        }
                    }
                } else {
                    echo "<p class='alert alert-danger'>Error fetching files: " . $response['message'] . "</p>";
                }
            }

            echo "<ul class='list-group'>";
            fetchFiles($api);
            echo "</ul>";
        } else {
            echo "<p class='alert alert-danger'>Token validation failed. Please check your API token.</p>";
        }

        ?>
    </div>
</body>

</html>
 
So will the insurance be refunded, or can we forget about it?
Hello! Withdrawal from hold is made at 00:00 the next day. Let's say payment Expires is 01/01/2024 17:10. This means that on January 1 at 17:10 the hold period will expire, and your balance will be credited at 00:00 on January 2.
 
Hello! Withdrawal from hold is made at 00:00 the next day. Let's say payment Expires is 01/01/2024 17:10. This means that on January 1 at 17:10 the hold period will expire, and your balance will be credited at 00:00 on January 2.
I am aware of this :|, since January all my insurance has been commentary as "Bank fine"
 
Back
Top