Skip to content

Commit 878b34d

Browse files
authored
Merge pull request #81 from rosette-api/WS-3053-replace-rosette-com
Ws 3053 replace rosette com
2 parents c11885b + bb88be4 commit 878b34d

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<a href="https://www.rosette.com"><img src="https://s3.amazonaws.com/styleguide.basistech.com/logos/rosette-logo.png" width="181" height="47" /></a>
1+
<a href="https://www.babelstreet.com/rosette"><img src="https://s3.amazonaws.com/styleguide.basistech.com/logos/rosette-logo.png" width="181" height="47" /></a>
22

33
---
44

@@ -12,7 +12,6 @@ comparing the similarity of names, categorizing and adding linguistic tags to te
1212

1313
## Rosette API Access
1414
- Rosette Cloud [Sign Up](https://developer.rosette.com/signup)
15-
- Rosette Enterprise [Evaluation](https://www.rosette.com/product-eval/)
1615

1716
## Quick Start
1817

examples/categories.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
echo 'Usage: php ' . __FILE__ . " --key <api_key> --url=<alternate_url>\n";
1414
exit();
1515
}
16-
$categories_url_data = "https://rosette.com/about";
16+
$categories_text_data = "If you are a fan of the British television series Downton Abbey and you are planning to be in New York anytime before April 2nd, there is a perfect stop for you while in town.";
1717
$api = isset($options['url']) ? new Api($options['key'], $options['url']) : new Api($options['key']);
1818
$params = new DocumentParameters();
19-
$params->set('contentUri', $categories_url_data);
19+
$params->set('content', $categories_text_data);
2020

2121
try {
2222
$result = $api->categories($params);

0 commit comments

Comments
 (0)