Aerial Corporation - Eonhub Signing

Introduction

The IPA Signer API allows you to securely sign IPA files for iOS applications. By using this API method, you can automate the signing process, saving time and effort for yourself. This documentation provides an overview of the API endpoints, request details, and code examples to help you integrate the IPA Signer API into your workflow.

Notice: This API example will use certificates that Eonhub uses, so it will work whenever Eonhub is signed or revoked.

Endpoint

The API endpoint for signing an IPA file is:

POST https://api.casp.dev/signeasy.php

Request

The request should be made using the HTTP POST method. Include the following parameters in the request body and set the "Content-Type" header to "multipart/form-data":

Easy Code Example


<form method="post" action="https://api.casp.dev/signeasy.php" enctype="multipart/form-data" id="uploadForm" name="uploadForm">
    <label for="name">Eonhub signing</label>
    <label for="ipa">Please upload a .IPA File</label>
    <input type="file" id="ipa" name="ipa" accept=".ipa" required>
    <center>
        <input type="submit" class="button" value="SIGN">
    </center>
</form>
    

Notice: This API example will use certificates that Eonhub uses, so it will work whenever Eonhub is signed or revoked.

Conclusion

Well, congrats! you can use the example above to freely make your own IPA signer. You may freely add CSS Designs without permission.