Reply to Post
Novice Coder
petukhovdmitry
1 Post
Member since ‎07.12.2012

Evaluation version of Speech API - is there any?

Hello,

 

Is any free evaluation version of Speech API available? Or I have to pay 99$ annual fee to try?

 

Thank you,

Dmitry

 

Moderator
69 Posts
Member since ‎05.24.2006

Re: Evaluation version of Speech API - is there any?

Hi Dmitry,

 

If you visit http://developer.att.com/speech, we are conducting a limited time offer to waive the $99 annual fee. This will provide you with free access to the Speech API (and other AT&T APIs) through the remainder of 2012.

 

Please let me know if you have any additional questions.

 

Thanks,

Dave

Expert Ghost
crhamilt
3 Posts
Member since ‎07.13.2012

Re: Evaluation version of Speech API - is there any?

When I go to that link,  http://developer.att.com/speech, it only offers the $99 option. 

Are you sure that the free offer has been activated?

 

Thanks,

  Craig

 

Moderator
69 Posts
Member since ‎05.24.2006

Re: Evaluation version of Speech API - is there any?

Hi Craig,

 

Yes - simply click on the "Try it for free" button, and you'll then see the free promo code (APISPH12). Please let me know if for some reason it doesn't work for you.

 

Thank you,

Dave

Expert Ghost
crhamilt
3 Posts
Member since ‎07.13.2012

Re: Evaluation version of Speech API - is there any?

My apologies, there it was on the popup.  (In the last line of the fine print, but I still should have seen it.)  It could be more obvious, though.

 

Thanks,

  Craig

 

Expert Spy
benreaves
13 Posts
Member since ‎08.02.2012

Re: Evaluation version of Speech API - is there any?

Any iOS / Android sample code available?  I saw http details, but sample code would certainly encourage use of this API. I'm often in the position of needing to get a sample app up and running quickly to show to management here.

Moderator
bs595r
153 Posts
Member since ‎01.13.2012

Re: Evaluation version of Speech API - is there any?

Hi Ben,

 

Our iOS SDK will be released within next couple weeks and an Android version coming later down the road. The SDK will provide wrappers around the REST APIs, which relieves some of the burden from the developer.

 

Cheers,

     --brett

Expert Spy
benreaves
13 Posts
Member since ‎08.02.2012

Re: Evaluation version of Speech API - is there any?

[ Edited ]

Thank you!  It looks like you have already released it at this link

  http://developer.att.com/home/api/ATTSpeechSDK-iOS-1.5.0.zip

 

In there is a PDF, and the iOS API is described in chapter 7. It includes a procedure to get the iOS sample app up and running. Here are a few notes to make it easier:

  • Before starting the procedure in paragraph 7.3, download and unzip the small sample app that AT&T has kindly provided at
    http://developer.att.com/home/api/SimpleSpeech-iOS.zip
  • In SimpleSpeech-iOS is an empty folder ATTSpeechKit. You need to delete it in order to avoid this error at 7.3 step 3:
    "ATTSpeechKit couldn't be copied to SimpleSpeech-iOS because an item with the same name already exists"

  • doubleclick on SampleSpeech.xcodeproj, and xcode will start up so you'll be ready to start the procedure at paragraph 7.3

  • Optional step 5.6 killed my xcode!  I don't know why, but I hope it's not important.

  • At step 7.4, I just tapped command-i to compile, and got 3 errors all in the same source file. That file contains the settings and customizations that are described in paragraph 7.4.

  • The Keys are not integers, they are strings - so they should look like this:
    #define API_KEY @"0x1234"
    #define SECRET @"0x567"
  • (of course these are the keys provided by AT&T when your app is registered/onboarded/productionized)

 

Please let me know if I'm missing something. I haven't yet run it because the properly provisioned iPhone wasn't available at work today, and on the Simulator it couldn't find a recording device. Looking forward to trying it again next week (tomorrow I have other meetings)

 

Ben

Expert Spy
benreaves
13 Posts
Member since ‎08.02.2012

Re: Evaluation version of Speech API - is there any?

The iOS sample code does run now. Here were the remaining steps:

  • The URL for oauth needs an s after http

 

  • API_KEY and SECRET should not have 0x in them

 

  • com.yourname.SpeechSample should be changed: from your Apple Developer License, and SpeechSample needs to be changed to match the app as you registered it with ATT.


Because I can't edit my post here, I put all the steps on my Wiki at http://brss.us/attSpeechApi

  • of 1