访问未配置。您的项目未启用API(Google+ API)。请使用Google Developers Console更新您的配置

时间:2015-05-09 19:45:33

标签: javascript google-api google-plus google-developers-console

即使我在Google Developers Console中启用了Google+ API也会出错

  

代码:403“消息”:“未配置访问权限。您的项目未启用API(Google+ API)。请使用Google Developers Console更新您的配置。”

2 个答案:

答案 0 :(得分:20)

您已[HttpPost] public ActionResult SelectedMovies(IList<int> chk_movie) { List<SelectedMovie> list = new List<SelectedMovie>(); for (int i = 0; i < chk_movie.Count; i++ ) { SelectedMovie sm = new SelectedMovie(); Movie m = new Movie(); m = RestClient.GetById(chk_movie[i]); sm.MovieID = m.MovieID; sm.Name = m.Name; list.Add(sm); } return View(list); } 为项目的<{>> 启用了Google+ API。确保已启用并仔细检查您的代码是否使用了与此项目匹配的正确Google Developer console _ id和client。我的how to enable APIs in Google Developers console.

教程

启用它的位置:

转到左边的Google developer console寻找Apis&amp;在Auths菜单下,您将找到API菜单。

  

API&amp; auth - &gt; API

寻找Google+ API启用它。

答案 1 :(得分:7)

我发现在启用API和允许我拨打电话之间有大约30分钟的延迟。

为了加快速度,我需要像这样运行API资源管理器查询: https://developers.google.com/apis-explorer/?hl=en_US#p/calendar/v3/calendar.calendarList.list

但这可能是巧合:)