Skip to content

ALPV - [POST] /local/fflprapp/cloud.cgi #809

Closed Answered by vivekatoffice
richardpurr asked this question in ACAP
Discussion options

You must be logged in to vote

Hi @richardpurr ,
Please use the following website for Base64 encoding and try: [BASE64
Decode and Encode]

C# code for Base64 decoding:

using System;
using System.Text;

class Program
{
    static void Main()
    {
        // Original string to encode
        string originalString = "http://10.0.5.223:5002";

        // Encode the original string to Base64
        byte[] originalBytes = Encoding.UTF8.GetBytes(originalString);
        string encodedString = Convert.ToBase64String(originalBytes);

        // Decode the Base64 string
        byte[] decodedBytes = Convert.FromBase64String(encodedString);
        string decodedString = Encoding.UTF8.GetString(decodedBytes);

        // Output…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by vivekatoffice
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
ACAP
Labels
None yet
2 participants