|
| 1 | +/** |
| 2 | +* Copyright 2019 IBM Corp. All Rights Reserved. |
| 3 | +* |
| 4 | +* Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +* you may not use this file except in compliance with the License. |
| 6 | +* You may obtain a copy of the License at |
| 7 | +* |
| 8 | +* http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +* |
| 10 | +* Unless required by applicable law or agreed to in writing, software |
| 11 | +* distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +* See the License for the specific language governing permissions and |
| 14 | +* limitations under the License. |
| 15 | +* |
| 16 | +*/ |
| 17 | + |
| 18 | +using IBM.Cloud.SDK.Core.Util; |
| 19 | +using IBM.Watson.PersonalityInsights.v3.Model; |
| 20 | +using System; |
| 21 | +using System.Collections.Generic; |
| 22 | +using System.IO; |
| 23 | + |
| 24 | +namespace IBM.Watson.PersonalityInsights.v3.Examples |
| 25 | +{ |
| 26 | + public class ServiceExample |
| 27 | + { |
| 28 | + string apikey = "{apikey}"; |
| 29 | + string url = "{url}"; |
| 30 | + string versionDate = "{versionDate}"; |
| 31 | + |
| 32 | + string contentToProfile = "The IBM Watson™ Personality Insights service provides a Representational State Transfer (REST) Application Programming Interface (API) that enables applications to derive insights from social media, enterprise data, or other digital communications. The service uses linguistic analytics to infer individuals' intrinsic personality characteristics, including Big Five, Needs, and Values, from digital communications such as email, text messages, tweets, and forum posts. The service can automatically infer, from potentially noisy social media, portraits of individuals that reflect their personality characteristics. The service can report consumption preferences based on the results of its analysis, and for JSON content that is timestamped, it can report temporal behavior."; |
| 33 | + |
| 34 | + static void Main(string[] args) |
| 35 | + { |
| 36 | + ServiceExample example = new ServiceExample(); |
| 37 | + |
| 38 | + example.Profile(); |
| 39 | + example.ProfileAsCsv(); |
| 40 | + |
| 41 | + Console.WriteLine("Examples complete. Press any key to close the application."); |
| 42 | + Console.ReadKey(); |
| 43 | + } |
| 44 | + |
| 45 | + #region Profile |
| 46 | + public void Profile() |
| 47 | + { |
| 48 | + TokenOptions tokenOptions = new TokenOptions() |
| 49 | + { |
| 50 | + IamApiKey = apikey, |
| 51 | + ServiceUrl = url |
| 52 | + }; |
| 53 | + |
| 54 | + PersonalityInsightsService service = new PersonalityInsightsService(tokenOptions, versionDate); |
| 55 | + |
| 56 | + Content content = new Content() |
| 57 | + { |
| 58 | + ContentItems = new List<ContentItem>() |
| 59 | + { |
| 60 | + new ContentItem() |
| 61 | + { |
| 62 | + Contenttype = ContentItem.ContenttypeEnumValue.TEXT_PLAIN, |
| 63 | + Language = ContentItem.LanguageEnumValue.EN, |
| 64 | + Content = contentToProfile |
| 65 | + } |
| 66 | + } |
| 67 | + }; |
| 68 | + |
| 69 | + var result = service.Profile( |
| 70 | + content: content, |
| 71 | + contentType: "text/plain", |
| 72 | + contentLanguage: "en", |
| 73 | + acceptLanguage: "en", |
| 74 | + rawScores: true, |
| 75 | + consumptionPreferences: true, |
| 76 | + csvHeaders: true |
| 77 | + ); |
| 78 | + |
| 79 | + Console.WriteLine(result.Response); |
| 80 | + } |
| 81 | + |
| 82 | + public void ProfileAsCsv() |
| 83 | + { |
| 84 | + TokenOptions tokenOptions = new TokenOptions() |
| 85 | + { |
| 86 | + IamApiKey = apikey, |
| 87 | + ServiceUrl = url |
| 88 | + }; |
| 89 | + |
| 90 | + PersonalityInsightsService service = new PersonalityInsightsService(tokenOptions, versionDate); |
| 91 | + |
| 92 | + Content content = new Content() |
| 93 | + { |
| 94 | + ContentItems = new List<ContentItem>() |
| 95 | + { |
| 96 | + new ContentItem() |
| 97 | + { |
| 98 | + Contenttype = ContentItem.ContenttypeEnumValue.TEXT_PLAIN, |
| 99 | + Language = ContentItem.LanguageEnumValue.EN, |
| 100 | + Content = contentToProfile |
| 101 | + } |
| 102 | + } |
| 103 | + }; |
| 104 | + |
| 105 | + var result = service.ProfileAsCsv( |
| 106 | + content: content, |
| 107 | + contentLanguage: "en", |
| 108 | + acceptLanguage: "en", |
| 109 | + rawScores: true, |
| 110 | + csvHeaders: true, |
| 111 | + consumptionPreferences: true, |
| 112 | + contentType: "text/plain" |
| 113 | + ); |
| 114 | + |
| 115 | + StreamReader reader = new StreamReader(result.Result); |
| 116 | + var text = reader.ReadToEnd(); |
| 117 | + |
| 118 | + Console.WriteLine(text); |
| 119 | + } |
| 120 | + #endregion |
| 121 | + } |
| 122 | +} |
0 commit comments