We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Search found 9 matches

by zterlizzese
Tue Feb 06, 2018 6:37 pm
Forum: Plum Fuse+ Q&A
Topic: How to receive audio in a REST service?
Replies: 4
Views: 5424

Re: How to receive audio in a REST service?

I'm sorry but I am still not able to use the downloaded file. I have tried the PHP code described using just the POST REST type. The resulting file does not play. I have opened the downloaded file in a hex editor, and I do not see any of the required bytes typical in a .wav file. This is an example ...
by zterlizzese
Fri Jan 26, 2018 12:57 pm
Forum: Plum Fuse+ Q&A
Topic: How to receive audio in a REST service?
Replies: 4
Views: 5424

How to receive audio in a REST service?

Hello, I have set up a REST service, and I am attempting to read the audio stream, but I am getting 0 bytes. Here is the call in C#: public string Read(Stream s) { string output = "No input"; if (s != null) { output = "Input detected "; s.Seek(0, SeekOrigin.Begin); output += " | Type = " + s.GetType...
by zterlizzese
Fri Jan 12, 2018 8:54 pm
Forum: Plum Fuse+ Q&A
Topic: How to upload a call_record audio into AWS S3 bucket?
Replies: 5
Views: 6775

Re: How to upload a call_record audio into AWS S3 bucket?

Understood. I've setup a web service to receive the call_recording. I am using a REST endpoint like this: [WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "REST")] string receiveAudio(Stream file); I am then returning the numb...
by zterlizzese
Tue Jan 09, 2018 3:03 pm
Forum: Plum Fuse+ Q&A
Topic: How to encode SHA256 in Application?
Replies: 4
Views: 6596

Re: How to encode SHA256 in Application?

Goodness, how embarrassing. Thank you for correcting that simple mistake on my end.

Zachary
by zterlizzese
Tue Jan 09, 2018 11:31 am
Forum: Plum Fuse+ Q&A
Topic: How to upload a call_record audio into AWS S3 bucket?
Replies: 5
Views: 6775

Re: How to upload a call_record audio into AWS S3 bucket?

I too am working with AWS S3 (Amazon's servers) and would greatly appreciate the ability to easily communicate with data to their system. Is there any way to access/print the raw contents of a "call_recording" object so that we can hash it and send it to Amazon's servers?

Zachary
by zterlizzese
Tue Jan 09, 2018 11:03 am
Forum: Plum Fuse+ Q&A
Topic: How to encode SHA256 in Application?
Replies: 4
Views: 6596

Re: How to encode SHA256 in Application?

Wow, thank you very much for your timely response. Unfortunately it seems the SHA256 HMAC function still does not match third party outputs (in fuse or in a browser). Would you verify that on your end as well? For example: sha256.hmac('a','b'); // = 08de329931e295683776aa9a43529bd0b275286df3160300c4...
by zterlizzese
Sat Dec 30, 2017 10:25 pm
Forum: Plum Fuse+ Q&A
Topic: How to encode SHA256 in Application?
Replies: 4
Views: 6596

How to encode SHA256 in Application?

Hello, I am writing an application which communicates with an Amazon S3 server. I need to encode some parts in SHA256. I've tried a number of different JavaScript libraries by copying the source code into the JS module. I have had success with each library in my browser, but not in the fuse applicat...
by zterlizzese
Fri Nov 24, 2017 7:11 am
Forum: Plum Fuse+ Q&A
Topic: How to Debug REST Call
Replies: 2
Views: 3737

Re: How to Debug REST Call

Beautiful! Thank you very much, Plum Support.
by zterlizzese
Mon Nov 20, 2017 6:11 pm
Forum: Plum Fuse+ Q&A
Topic: How to Debug REST Call
Replies: 2
Views: 3737

How to Debug REST Call

Hello everyone, I have built a custom PUT package which I've tested extensively on my machine but I cannot get the call to go through using the REST builder (either the in-application module or the post-application call). Here is the format of the REST call (it is to amazon's s3 REST api): PUT /zter...