2

ウェブアプリにチャートを追加することを検討しています。Google Charts などのサードパーティ サービスを使用することをお勧めします。このアイデアは、クライアント データが Google に渡されることへの懸念から却下されました。

Google のプライバシー ポリシー(Charts にも適用されるようです) は、誰とでも共有するにはオプトインが必要であると述べているため、データの悪用を排除しているようです. それでも、私はこれについて確信が持てません。

Google に送信するデータのプライバシーやセキュリティに関して、正当な懸念はありますか?

4

2 に答える 2

2

あなたの Web アプリは、あなたの会社だけが使用するものですか、それともあなたの会社のクライアントも使用するものですか? クライアントが関与している場合、それが Google チャートを使用しない強力な理由になります。結局のところ、Google のプライバシー ポリシーに記載されている内容に関係なく、クライアントのデータを Google に送信する決定を下すことはできません。

于 2010-08-26T04:16:42.133 に答える
1

My company has the same concerns, here are a couple of things that came up in the discussion:

  1. Google has a good track record thus far in not unilaterally exposing customer data (unlike say, Facebook). Chances are they would not expose your data.

  2. If you're really concerned about the exposure of data, you could always send the Google Charts API erroneous column and row data names, then rename the data to their correct names on the client side. So you could have columns Dept A, Dept B, Dept C, but you could send it to Google as X, Y, Z. That way, even if someone did see your data they'd have to spend a bunch of time making sense of it.

  3. Use a client side library such as Flot (code.google.com/p/flot/). We'll probably use this option since we have some government customers who don't have access to the outside internet.

于 2011-08-08T15:59:45.117 に答える