On Server in WebApiController i have :
private Byte[] bytes=new Byte[21];
after filling it looks like:
bytes = new byte{127,253,159,127,253,223,127,253,255,127,252,63,0,1,192,127,252,255,127,253,191};
I know that this will be a string:
111111101011111111111001111111101011111111111011111111101011111111111111111111100011111111111100000000001000000000000011111111100011111111111111111111101011111111111101
When I'm on the client receives a response from the server array looks like:
f/2ff/3ff/3/f/w/AAHAf/z/f/2/
This is a base64 format.How can I convert this post to a string type as
111111101011111111111001111111101011111111111011111111101011111111111111111111100011111111111100000000001000000000000011111111100011111111111111111111101011111111111101
Please help me find a solution to this problem. Implementation on JS or AngularJS.