Skip to content

Commit e6c87ff

Browse files
committed
Update links/refs to the wiki, content moved to the main repo
1 parent 8446f08 commit e6c87ff

File tree

10 files changed

+15
-17
lines changed

10 files changed

+15
-17
lines changed

Examples/CalendarSample/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ target 'CalendarSample' do
66
# In production, you would use:
77
# pod 'GoogleAPIClientForREST/Calendar'
88

9-
# Also use GTMAppAuth & AppAuth. See the project wiki, you can use this or
9+
# Also use GTMAppAuth & AppAuth. See the project USING.md, you can use this or
1010
# Google SignIn.
1111
pod 'GTMAppAuth'
1212
pod 'AppAuth'

Examples/DriveSample/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ target 'DriveSample' do
55
# In production, you would use:
66
# pod 'GoogleAPIClientForREST/Drive'
77

8-
# Also use GTMAppAuth & AppAuth. See the project wiki, you can use this or
8+
# Also use GTMAppAuth & AppAuth. See the project USING.md, you can use this or
99
# Google SignIn.
1010
pod 'GTMAppAuth'
1111
pod 'AppAuth'

Examples/StorageSample/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ target 'StorageSample' do
55
# In production, you would use:
66
# pod 'GoogleAPIClientForREST/Storage'
77

8-
# Also use GTMAppAuth & AppAuth. See the project wiki, you can use this or
8+
# Also use GTMAppAuth & AppAuth. See the project USING.md, you can use this or
99
# Google SignIn.
1010
pod 'GTMAppAuth'
1111
pod 'AppAuth'

Examples/YouTubeSample/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ target 'YouTubeSample' do
55
# In production, you would use:
66
# pod 'GoogleAPIClientForREST/YouTube'
77

8-
# Also use GTMAppAuth & AppAuth. See the project wiki, you can use this or
8+
# Also use GTMAppAuth & AppAuth. See the project USING.md, you can use this or
99
# Google SignIn.
1010
pod 'GTMAppAuth'
1111
pod 'AppAuth'

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ framework for accessing JSON APIs.
1313
This is the recommended library for accessing JSON-based Google APIs for iOS,
1414
macOS, tvOS, and watchOS applications.
1515

16-
**To get started** with Google APIs and the Objective-C client library, please read
17-
[USING.md](https://github.com/google/google-api-objectivec-client-for-rest/blob/main/USING.md)
18-
for detailed information. The
16+
**To get started** with Google APIs and the Objective-C client library, please
17+
read [USING.md](USING.md) for detailed information. The
1918
[example applications](https://github.com/google/google-api-objectivec-client-for-rest/tree/main/Examples)
2019
can also help answer some questions, but there isn't an example for every
2120
service as there are just to many services.
@@ -32,15 +31,14 @@ by using the
3231
**If you have a problem** or want a new feature to be included in the library,
3332
please join the
3433
[discussion group](http://groups.google.com/group/google-api-objectivec-client).
35-
Be sure to include
36-
[http logs](https://github.com/google/google-api-objectivec-client-for-rest/wiki#logging-http-server-traffic)
37-
for requests and responses when posting questions. Bugs may also be submitted
38-
on the [issues list](https://github.com/google/google-api-objectivec-client-for-rest/issues).
34+
Be sure to include [http logs](USING.md#logging-http-server-traffic) for
35+
requests and responses when posting questions. Bugs may also be submitted on the
36+
[issues list](https://github.com/google/google-api-objectivec-client-for-rest/issues).
3937

4038
**Externally-included projects**: The library is built on top of code from the separate
4139
project [GTM Session Fetcher](https://github.com/google/gtm-session-fetcher). To work
4240
with some remote services, it also needs
43-
[Authentication/Authorization](https://github.com/google/google-api-objectivec-client-for-rest/wiki#authentication-and-authorization).
41+
[Authentication/Authorization](USING.md#authentication-and-authorization).
4442

4543
**Google Data APIs**: The much older library for XML-based APIs is
4644
[still available](https://github.com/google/gdata-objectivec-client).

Sources/Core/Public/GoogleAPIClientForREST/GTLRBatchQuery.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515

1616
// Batch query documentation:
17-
// https://github.com/google/google-api-objectivec-client-for-rest/wiki#batch-operations
17+
// https://github.com/google/google-api-objectivec-client-for-rest/blob/main/USING.md#batch-operations
1818

1919
#import "GTLRQuery.h"
2020

Sources/Core/Public/GoogleAPIClientForREST/GTLRObject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515

1616
// GTLRObject documentation:
17-
// https://github.com/google/google-api-objectivec-client-for-rest/wiki#objects-and-queries
17+
// https://github.com/google/google-api-objectivec-client-for-rest/blob/main/USING.md#objects-and-queries
1818

1919
#import <Foundation/Foundation.h>
2020

Sources/Core/Public/GoogleAPIClientForREST/GTLRQuery.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515

1616
// Query documentation:
17-
// https://github.com/google/google-api-objectivec-client-for-rest/wiki#query-operations
17+
// https://github.com/google/google-api-objectivec-client-for-rest/blob/main/USING.md#query-operations
1818

1919
#import "GTLRObject.h"
2020
#import "GTLRUploadParameters.h"

Sources/Core/Public/GoogleAPIClientForREST/GTLRService.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515

1616
// Service object documentation:
17-
// https://github.com/google/google-api-objectivec-client-for-rest/wiki#services-and-tickets
17+
// https://github.com/google/google-api-objectivec-client-for-rest/blob/main/USING.md#services-and-tickets
1818

1919
#import <Foundation/Foundation.h>
2020

Sources/Core/Public/GoogleAPIClientForREST/GTLRUploadParameters.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515

1616
// Uploading documentation:
17-
// https://github.com/google/google-api-objectivec-client-for-rest/wiki#uploading-files
17+
// https://github.com/google/google-api-objectivec-client-for-rest/blob/main/USING.md#uploading-files
1818

1919
#import <Foundation/Foundation.h>
2020

0 commit comments

Comments
 (0)