我试图打电话但我一直收到错误。这是我的代码:
require 'rubygems'
require 'net/http'
require 'uri'
require 'json'
class AlchemyAPI
#Setup the endpoints
@@ENDPOINTS = {}
@@ENDPOINTS['taxonomy'] = {}
@@ENDPOINTS['taxonomy']['url'] = '/url/URLGetRankedTaxonomy'
@@ENDPOINTS['taxonomy']['text'] = '/text/TextGetRankedTaxonomy'
@@ENDPOINTS['taxonomy']['html'] = '/html/HTMLGetRankedTaxonomy'
@@BASE_URL = 'http://access.alchemyapi.com/calls'
def initialize()
begin
key = File.read('C:\Users\KVadher\Desktop\api_key.txt')
key.strip!
if key.empty?
#The key file should't be blank
puts 'The api_key.txt file appears to be blank, please copy/paste your API key in the file: api_key.txt'
puts 'If you do not have an API Key from AlchemyAPI please register for one at: http://www.alchemyapi.com/api/register.html'
Process.exit(1)
end
if key.length != 40
#Keys should be exactly 40 characters long
puts 'It appears that the key in api_key.txt is invalid. Please make sure the file only includes the API key, and it is the correct one.'
Process.exit(1)
end
@apiKey = key
rescue => err
#The file doesn't exist, so show the message and create the file.
puts 'API Key not found! Please copy/paste your API key into the file: api_key.txt'
puts 'If you do not have an API Key from AlchemyAPI please register for one at: http://www.alchemyapi.com/api/register.html'
#create a blank file to hold the key
File.open("api_key.txt", "w") {}
Process.exit(1)
end
end
# Categorizes the text for a URL, text or HTML.
# For an overview, please refer to: http://www.alchemyapi.com/products/features/text-categorization/
# For the docs, please refer to: http://www.alchemyapi.com/api/taxonomy/
#
# INPUT:
# flavor -> which version of the call, i.e. url, text or html.
# data -> the data to analyze, either the the url, text or html code.
# options -> various parameters that can be used to adjust how the API works, see below for more info on the available options.
#
# Available Options:
# showSourceText -> 0: disabled (default), 1: enabled.
#
# OUTPUT:
# The response, already converted from JSON to a Ruby object.
#
def taxonomy(flavor, data, options = {})
unless @@ENDPOINTS['taxonomy'].key?(flavor)
return { 'status'=>'ERROR', 'statusInfo'=>'Taxonomy info for ' + flavor + ' not available' }
end
#Add the URL encoded data to the options and analyze
options[flavor] = data
return analyze(@@ENDPOINTS['taxonomy'][flavor], options)
print
end
**taxonomy(text,"trees",1)**
end
** **我已经打电话了。我做错了什么。我收到的错误是:
C:/Users/KVadher/Desktop/testrub:139:in `<class:AlchemyAPI>': undefined local variable or method `text' for AlchemyAPI:Class (NameError)
from C:/Users/KVadher/Desktop/testrub:6:in `<main>'
我觉得好像我正常呼叫并且api代码本身有问题?虽然我可能错了。
答案 0 :(得分:1)
是的,正如jon snow所说,函数(方法)调用必须在类之外。这些方法与类一起定义。
另外,Options
应该是Hash
,而不是数字,因为您调用options[flavor] = data
,这会导致另一个问题。
我相信也许您打算将text
放在引号中,因为这是您的口味之一。
此外,因为您声明了一个类,所以这称为实例方法,您必须创建该类的实例才能使用它:
my_instance = AlchemyAPI.new
my_taxonomy = my_instance.taxonomy("text", "trees")
这足以让它发挥作用,看起来你有办法让这一切都有效。祝你好运!