Error code 403 in Google+ api

前端 未结 5 2020
臣服心动
臣服心动 2020-12-06 06:52

I got \"error\": { \"errors\": [ { \"domain\": \"usageLimits\", \"reason\": \"dailyLimitExceededUnreg\", \"message\": \"Daily Limit for Unauthenticate

5条回答
  •  执念已碎
    2020-12-06 06:56

    That message implies that you haven't set up a Google APIs console project.

    1. Create a Google APIs Console project
    2. On the Services pane, enable all of the APIs that your project requires.
    3. On the API Access pane, click Create an OAuth 2.0 client ID. A dialog opens. Fill in your project's information. Click Next
    4. Choose the appropriate application type. Based on the tags you used for this post, I am guessing this is an iOS project so select Installed application.
    5. Enter your bundle ID. You don't need to enter an App Store ID until your app is listed there.
    6. Click Create Client ID.

    You will see the client ID and client secret values. You will use these values to enable communication with your project and the Google APIs.

    If you aren't already using it, see the Google+ iOS SDK and documentation for a full walk through. The task called "write moments" is similar in implementation and demonstrates how to connect to and use the Google+ REST APIs from within an iOS project that uses the SDK.

    You'll need to specify the scope of plus.me to get the profile information.

提交回复
热议问题