2017년 1월 23일 월요일

StockQuotes for App Inventor 2


StockQuotes

What You're Building

Just like you can access web pages from your phone -- for example, to look up a stock price -- so can App Inventor. This app enables the user to enter a stock symbol, then looks up the price of the stock on Yahoo! Finance and displays the price on the phone.
This tutorial assumes that you are familiar with the basics of App Inventor -- using the Component Designer to build a user interface and using the Blocks Editor to specify event handlers. If you are not familiar with the basics, try stepping through some of the basic tutorials before continuing.

Introduction

This tutorial includes
1. Accepting text input from the user to specify the stock symbol.
2. Using the Web component to ask Google Finance for the latest price for the stock.
3. Displaying the result.

Getting Started

Connect to the App Inventor web site and start a new project. Name it StockQuotes, and also set the screen’s Title to “Stock Quotes”. Open the Blocks Editor and connect it to the phone.

Set up the Components

Use the component designer to create the user interface. When you are done, it should look something like the picture below. Additional instructions are below the picture.
Create the following components by dragging them from the Palette into the Viewer.
Component TypePalette GroupWhat you'll name itPurpose of Component
TextBoxUser InterfaceStockSymbolTextBoxWhere the user enters the stock symbol
ButtonUser InterfaceGetQuoteButtonTo request the stock quote
LabelUser InterfaceValueLabelTo display the stock quote
WebConnectivityWeb1To request and receive the stock quote
Stick with the default properties except for the following changes:
ComponentAction
StockSymbolTextBoxSet its Hint property to "Enter a stock symbol".
GetQuoteButtonSet its Text property to "Get Stock Quote".
ValueLabelClear its Text property.

The Yahoo! Finance API

Many web services provide an application programmer interface (API) for developers to enable their programs to access the service. Some ways to discover APIs are through the website http://programmableweb.com or just by doing a web search for the service name and “API”.
For example, you can use the Yahoo! Finance API to get the latest price for the stock with the symbol "GOOG", for example, with the URL http://finance.yahoo.com/d/quotes.csv?f=l1&s=GOOG . The section "f=l1" (lower-case letter L, followed by the number 1) says we would like the latest price, and the section “s=GOOG” says we would like information about the stock whose symbol is “GOOG”. The result is returned in comma-separated value (CSV) format, which you may be familiar with from spreadsheets. Since only one value will be returned for our query, the result will be a plain old number, such as “511.5”, without any commas. (Commas would be used if we requested multiple pieces of data from Yahoo!, such as the name of the company and the daily trade volume.)

Add Behaviors to the Components

Requesting the Data
The blocks to make the web request are shown here and detailed below:
Block typeDrawerPurpose
GetQuoteButton.ClickGetQuoteButtonHandle a click of the "Get Quote" button.
set Web1.Url toWeb1Specify the URL to request.
joinTextConcatenate the parts of the URL.
" "
(http://finance.yahoo.com/d/quotes.csv?f=l1&s=)
TextSpecify the first unchanging part of the URL.
StockSymbolTextBox.TextStockSymbolTextBoxGet the stock symbol from the text box.
call Web1.GetWeb1Make the web request.
The meaning is: When GetQuoteButton is clicked:
1. Build the Web component’s URL by concatenating “http://finance.yahoo.com/d/quotes.csv?f=l1&s=” (which you should copy and paste into the text block) and the symbol entered by the user (StockSymbolTextBox.Text).
2. Request the page specified by the URL. (This is like pressing return after entering a URL in your web browser.)
Receiving the Data
When the response to the web request arrives, the Web.GotText event is raised with four parameters (only some of which we’ll use in this app):
1. url: the URL of the original request (which is useful if requests are made with many different URLs).
2. responseCode: the HTTP status code, which indicates whether the web request succeeded or how it failed; for example, 200 means that the request succeeded, 404 that the page could not be found, etc.
3. responseType: the MIME type of the response, such as “text/csv” in this app, “image/jpeg”, etc.
4. responseContent: the data being returned, such as “511.5”.
Here are a picture and table of the blocks you need to create:
Block typeDrawerPurpose
Web1.GotTextWeb1Specify what to do when the reply comes back from the web.
if thenControlProvide different behavior depending on whether the request succeeded. Use the mutator to add an else statement.
get responseCodeVariablesGets the response code returned for the web request, which...

(equals) block
Logic...is checked for equality with...
number (200)Math...200, the code for valid web responses.
set ValueLabel.Text toValueLabelDisplay the result on the screen.
joinTextBuild the result by concatenating...
" "
("Current value: ")
Text...the text “Current value: “ and...
get responseContentVariablesGets the value returned from the web.
set ValueLabel.Text toValueLabelDisplay an error message.
" "
("Error getting stock quote")
TextThe error message
Here's a description of the block's behavior:
1. If the response code indicates that the web request succeeded (= 200), set the label to the concatenation of “Current value: “ and the returned data (e.g., 511.5).
2. Otherwise, set the label to “Error getting stock quote”.

Review

Here are some ideas introduced in this tutorial:
1. Using an application programmer interface (API)
2. Making a request with the Web component
3. Checking whether a web request was successful
4. Displaying information returned from the web
These ideas will be developed further in the second part of this tutorial, which is under development.

Scan the Sample App to your Phone

Scan the following barcode onto your phone to install and run the sample app.

Download Source Code

If you'd like to work with this sample in App Inventor, download the source code to your computer, then open App Inventor, click Projects, choose Import project (.aia) from my computer..., and select the source code you just downloaded.

Credits

This tutorial is based on an app created by Prof. David Wolber and relies on the Yahoo! Finance API. Done with StockQuotes? Return to the other tutorials here.
Tutorial Version: App Inventor 2
Tutorial Difficulty: Intermediate
Tutorial Type: External API


댓글 없음:

댓글 쓰기