File: oauth.c

package info (click to toggle)
flickcurl 1.26-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,508 kB
  • ctags: 3,340
  • sloc: ansic: 26,020; sh: 11,915; xml: 1,025; makefile: 343
file content (1509 lines) | stat: -rw-r--r-- 36,483 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
/* -*- Mode: c; c-basic-offset: 2 -*-
 *
 * oauth.c - OAuth 1.0 for Flickr
 *
 * Copyright (C) 2011-2012, David Beckett http://www.dajobe.org/
 * 
 * This file is licensed under the following three licenses as alternatives:
 *   1. GNU Lesser General Public License (LGPL) V2.1 or any newer version
 *   2. GNU General Public License (GPL) V2 or any newer version
 *   3. Apache License, V2.0 or any newer version
 * 
 * You may not use this file except in compliance with at least one of
 * the above three licenses.
 * 
 * See LICENSE.html or LICENSE.txt at the top of this package for the
 * complete terms and further detail along with the license texts for
 * the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively.
 * 
 */

#include <stdio.h>
#include <string.h>
#include <stdarg.h>

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <flickcurl.h>
#include <flickcurl_internal.h>

/* Only used in the test in this file so needs to be in the library */
int flickcurl_oauth_build_key(flickcurl_oauth_data* od);


#ifndef STANDALONE

/*
 * flickcurl_base64_encode_digit:
 * @c: input digit 0..63
 *
 * INTERNAL - base64 encode a digit
 *
 * Note: this the output is not URL safe since '+' and '/' will need
 * %-escaping
 *
 * Return value: base64 encoded char of input value
 */
static char
flickcurl_base64_encode_digit(unsigned char c)
{
  if(c < 26)
    return 'A' + c;
  else if(c < 52)
    return 'a' + (c - 26);
  else if(c < 62)
    return '0' + (c - 52);
  else if(c == 62)
    return '+';
  else
    return '/';
}


/*
 * flickcurl_base64_encode:
 * @data: The data to base64 encode
 * @len: The size of the data in src
 * @out_len_p: pointer to store output length (or NULL)
 *
 * INTERNAL - Base64 encode data into a new string.
 *
 * Return value: base64 encoded string or NULL on failure
 */
static char*
flickcurl_base64_encode(const unsigned char *data, size_t len,
                        size_t *out_len_p)
{
  char* out;
  char* p;
  unsigned int i;

  if(!data)
    return NULL;

  /* len + 1 to round up for partial sizes when (len % 3) is not 0 */
  out = (char*)calloc(sizeof(char), (len + 1) * 4/3 + 1);
  if(!out)
    return NULL;
  
  /* Encode 1-3 input bytes at a time (8, 16 or 24 input bits) into
   * 2-4 output chars
   */
  p = out;
  for(i = 0; i < len; i += 3) {
    unsigned char in_char_1 = data[i];
    unsigned char in_char_2 = ((i + 1) < len) ? data[i + 1] : 0;
    unsigned char in_char_3 = ((i + 2) < len) ? data[i + 2] : 0;
    unsigned char out_digit_1;
    unsigned char out_digit_2;
    unsigned char out_digit_3;
    unsigned char out_digit_4;

    out_digit_1 =   in_char_1 >> 2;
    out_digit_2 = ((in_char_1 & 0x03) << 4) | (in_char_2 >> 4);
    out_digit_3 = ((in_char_2 & 0x0f) << 2) | (in_char_3 >> 6);
    out_digit_4 =   in_char_3 & 0x3f;
    
    *p++ = flickcurl_base64_encode_digit(out_digit_1);
    *p++ = flickcurl_base64_encode_digit(out_digit_2);
      
    if((i + 1) < len)
      *p++ = flickcurl_base64_encode_digit(out_digit_3);
    else
      *p++ = '=';
      
    if((i + 2) < len)
      *p++ = flickcurl_base64_encode_digit(out_digit_4);
    else
      *p++ = '=';
  }

  *p = '\0';

  if(out_len_p)
    *out_len_p = p - out;

  return out;
}


/*
 * flickcurl_oauth_free:
 * @od: oauth data
 *
 * INTERNAL - Free OAuth data
 *
 */
void
flickcurl_oauth_free(flickcurl_oauth_data* od)
{
  if(od->client_key)
    free(od->client_key);
  
  if(od->client_secret)
    free(od->client_secret);
  
  if(od->request_token)
    free(od->request_token);
  
  if(od->request_token_secret)
    free(od->request_token_secret);
  
  /* od->verifier always shared */
  
  if(od->token)
    free(od->token);
  
  if(od->token_secret)
    free(od->token_secret);
  
  /* od->callback always shared */
  
  if(od->nonce)
    free(od->nonce);
  
  if(od->key)
    free(od->key);
  
  if(od->data)
    free(od->data);

  if(od->username)
    free(od->username);
  
  if(od->user_nsid)
    free(od->user_nsid);

}


/*
 * flickcurl_oauth_build_key:
 * @od: oauth data
 *
 * INTERNAL - Build OAuth 1.0 key
 *
 * KEY
 * http://tools.ietf.org/html/rfc5849#section-3.4.2
 * key = concat(client-credentials-secret, '&', token-credentials-secret) 
 *
 * Stores result in od->key and od->key_len
 *
 * Return value: non-0 on failure
 */
int
flickcurl_oauth_build_key(flickcurl_oauth_data* od)
{
  unsigned char *p;
  
  if(od->key)
    free(od->key);

  od->key_len = od->client_secret_len + 1;
  if(od->request_token_secret_len)
    od->key_len += od->request_token_secret_len;
  else
    od->key_len += od->token_secret_len;

  od->key = (unsigned char*)malloc(od->key_len + 1); /* for NUL */
  if(!od->key)
    return 1;
  
  p = od->key;
  if(od->client_secret && od->client_secret_len) {
    memcpy(p, od->client_secret, od->client_secret_len);
    p += od->client_secret_len;
  }
  *p++ = '&';
  if(od->request_token_secret && od->request_token_secret_len) {
    memcpy(p, od->request_token_secret, od->request_token_secret_len);
    p += od->request_token_secret_len;
  } else if(od->token_secret && od->token_secret_len) {
    memcpy(p, od->token_secret, od->token_secret_len);
    p += od->token_secret_len;
  }
  *p = '\0'; /* Not part of HMAC-SHA1 data */
  
  return 0;
}


/*
 * flickcurl_oauth_compute_signature:
 * @od: oauth data
 * @len_p: pointer to store size of result
 *
 * INTERNAL - Compute OAuth signature over 'key' and 'data' fields of @od
 *
 * Result: signature string or NULL on failure
 *
 */
char*
flickcurl_oauth_compute_signature(flickcurl_oauth_data* od, size_t* len_p)
{
  unsigned char *s1;
  char *result;
  
  s1 = flickcurl_hmac_sha1(od->data, od->data_len, od->key, od->key_len);
  if(!s1)
    return NULL;
  
  result = flickcurl_base64_encode(s1, SHA1_DIGEST_LENGTH, len_p);
  free(s1);
  
  return result;
}


static int
compare_args(const void *a, const void *b) 
{
  return strcmp(*(char**)a, *(char**)b);
}


static void
flickcurl_sort_args(flickcurl *fc)
{
  qsort((void*)fc->parameters, fc->count, sizeof(char*[2]), compare_args);
}


/*
 * flickcurl_oauth_prepare_common:
 * ...
 *
 * INTERNAL - prepare an oauth request
 */
int
flickcurl_oauth_prepare_common(flickcurl *fc,
                               const char* service_uri,
                               const char* method,
                               const char* upload_field,
                               const char* upload_value,
                               int parameters_in_url, int need_auth)
{
  flickcurl_oauth_data* od = &fc->od;
  int i;
  char *signature_string = NULL;
  size_t* values_len = NULL;
  unsigned int fc_uri_len = 0; /* length of URI path */
  unsigned int full_uri_len = 0; /* includes ? and paramters */
  char* nonce = NULL;
  int free_nonce = 0;
  char* timestamp = NULL;
  int rc = 1;
  int is_oauth_method = 0;
  char *p;

  if(!service_uri)
    return 1;
  
  /* If one is given, both are required */
  if((upload_field || upload_value) && (!upload_field || !upload_value))
    return 1;
  
  fc->failed = 0;
  fc->error_code = 0;
  if(fc->error_msg) {
    free(fc->error_msg);
    fc->error_msg = NULL;
  }
  if(fc->param_fields) {
    for(i = 0; fc->param_fields[i]; i++) {
      free(fc->param_fields[i]);
      free(fc->param_values[i]);
    }
    free(fc->param_fields);
    free(fc->param_values);
    fc->param_fields = NULL;
    fc->param_values = NULL;
    fc->parameter_count = 0;
  }
  if(fc->upload_field) {
    free(fc->upload_field);
    fc->upload_field = NULL;
  }
  if(fc->upload_value) {
    free(fc->upload_value);
    fc->upload_value = NULL;
  }
  
  if(fc->method)
    free(fc->method);
  if(method) { 
    size_t len = strlen(method);
    fc->method = (char*)malloc(len + 1);
    if(!fc->method)
      goto tidy;

    memcpy(fc->method, method, len + 1);
    is_oauth_method = !strncmp(method, "flickr.oauth.", 13);
  } else
    fc->method = NULL;

  /* OAuth parameters
   *
   * oauth_callback         <URL> or "oob" [request token request]
   * oauth_consumer_key     API key
   * oauth_nonce            <random value - different each time>
   * oauth_signature        [ADDED AFTER COMPUTING]
   * oauth_signature_method "HMAC-SHA1"
   * oauth_timestamp        <value of gettimeofday()>
   * oauth_version          "1.0"
   *
   * oauth_verifier         verifier [access token request]
   * oauth_token            access token or request token
   */

  if(fc->method && !is_oauth_method)
    flickcurl_add_param(fc, "method", fc->method);

  if(od->callback)
    flickcurl_add_param(fc, "oauth_callback", od->callback);
  
  flickcurl_add_param(fc, "oauth_consumer_key", od->client_key);

  nonce = (char*)od->nonce;
  if(!nonce) {
    nonce = (char*)malloc(20);
    if(!nonce)
      goto tidy;

    free_nonce = 1;
    sprintf(nonce, "%ld", mtwist_u32rand(fc->mt));
  }
  flickcurl_add_param(fc, "oauth_nonce", nonce);

  /* oauth_signature - computed over these fields */
  flickcurl_add_param(fc, "oauth_signature_method", "HMAC-SHA1");

  timestamp = (char*)malloc(20);
  if(!timestamp)
    goto tidy;

  if(od->timestamp)
    sprintf(timestamp, "%ld", (long)od->timestamp);
  else {
    struct timeval tp;
    (void)gettimeofday(&tp, NULL);
    sprintf(timestamp, "%ld", (long)tp.tv_sec);
  }
  flickcurl_add_param(fc, "oauth_timestamp", timestamp);

  flickcurl_add_param(fc, "oauth_version", "1.0");

  if(od->token)
    flickcurl_add_param(fc, "oauth_token", od->token);
  else if(od->request_token) 
    flickcurl_add_param(fc, "oauth_token", od->request_token);

  if(od->verifier)
    flickcurl_add_param(fc, "oauth_verifier", od->verifier);

  flickcurl_end_params(fc);

  /* +FLICKCURL_FLICKCURL_MAX_OAUTH_PARAM_COUNT for oauth fields +1 for NULL terminating pointer */
  fc->param_fields = (char**)calloc(fc->count + FLICKCURL_MAX_OAUTH_PARAM_COUNT + 1, sizeof(char*));
  if(!fc->param_fields)
    goto tidy;

  fc->param_values = (char**)calloc(fc->count + FLICKCURL_MAX_OAUTH_PARAM_COUNT + 1, sizeof(char*));
  if(!fc->param_values)
    goto tidy;

  values_len       = (size_t*)calloc(fc->count + FLICKCURL_MAX_OAUTH_PARAM_COUNT + 1, sizeof(size_t));
  if(!values_len)
    goto tidy;

  if((need_auth && (od->client_secret || od->token_secret)) || fc->sign)
    flickcurl_sort_args(fc);


  fc_uri_len = strlen(service_uri);
  full_uri_len = fc_uri_len;

  if(parameters_in_url)
    full_uri_len++;
  
  /* Save away the parameters and calculate the value lengths */
  for(i = 0; fc->parameters[i][0]; i++) {
    size_t param_len = strlen(fc->parameters[i][0]);

    if(fc->parameters[i][1])
      values_len[i] = strlen(fc->parameters[i][1]);
    else {
      values_len[i] = 0;
      fc->parameters[i][1] = "";
    }
    fc->param_fields[i] = (char*)malloc(param_len + 1);
    if(!fc->param_fields[i])
      goto tidy;

    memcpy(fc->param_fields[i], fc->parameters[i][0], param_len + 1);

    fc->param_values[i] = (char*)malloc(values_len[i] + 1);
    if(!fc->param_values[i])
      goto tidy;

    memcpy(fc->param_values[i], fc->parameters[i][1], values_len[i] + 1);

    /* 3x value len is conservative URI %XX escaping on every char */
    full_uri_len += param_len + 1 /* = */ + 3 * values_len[i];
  }

  if(upload_field) {
    size_t len = strlen(upload_field);
    fc->upload_field = (char*)malloc(len + 1);
    if(!fc->upload_field)
      goto tidy;

    memcpy(fc->upload_field, upload_field, len + 1);

    len = strlen(upload_value);
    fc->upload_value = (char*)malloc(len + 1);
    if(!fc->upload_value)
      goto tidy;

    memcpy(fc->upload_value, upload_value, len + 1);
  }


  if(((need_auth && (od->client_secret || od->token_secret))) ||
     fc->sign) {
    char *buf = NULL;
    size_t buf_len = 0;
    char *param_buf = NULL;
    size_t param_buf_len = 0;
    size_t vlen = 0;
    char *escaped_value = NULL;
    const char* http_method;
    size_t http_method_len;
    size_t escaped_value_len;
    
    for(i = 0; fc->parameters[i][0]; i++)
      param_buf_len += strlen(fc->parameters[i][0]) + 3 + (3 * values_len[i]) + 3;
    param_buf = (char*)malloc(param_buf_len + 1);
    if(!param_buf)
      goto tidy;

    *param_buf = '\0';
    
    p = param_buf;

    for(i = 0; fc->parameters[i][0]; i++) {
      size_t len = strlen(fc->parameters[i][0]);
      if(i > 0)
        *p++ = '&';
      memcpy(p, fc->parameters[i][0], len);
      p += len;

      *p++ = '=';

      escaped_value = curl_escape(fc->parameters[i][1], 0);
      escaped_value_len = strlen(escaped_value);
      memcpy(p, escaped_value, escaped_value_len);
      p += escaped_value_len;
      curl_free(escaped_value);
    }
    *p = '\0';

    http_method = (upload_field || fc->is_write) ? "POST" : "GET";
    http_method_len = (upload_field || fc->is_write) ? 4  : 3;

    buf_len = http_method_len;
    buf_len += 1; /* & */
    buf_len += (3 * strlen(service_uri));
    buf_len += 1; /* & */
    buf_len += param_buf_len * 3;

    buf = (char*)malloc(buf_len + 1);
    if(!buf) {
      free(param_buf);
      goto tidy;
    }

    p = buf;
    memcpy(p, http_method, http_method_len);
    p += http_method_len;

    *p++ = '&';

    escaped_value = curl_escape(service_uri, 0);
    escaped_value_len = strlen(escaped_value);
    memcpy(p, escaped_value, escaped_value_len);
    p += escaped_value_len;
    curl_free(escaped_value);

    *p++ = '&';

    escaped_value = curl_escape(param_buf, 0);
    escaped_value_len = strlen(escaped_value);
    memcpy(p, escaped_value, escaped_value_len);
    p += escaped_value_len;
    curl_free(escaped_value);
    *p = '\0';
    
    free(param_buf);

    if(flickcurl_oauth_build_key(od)) {
#ifdef FLICKCURL_DEBUG
      fprintf(stderr, "flickcurl_oauth_build_key() failed\n");
#endif
      free(buf);
      goto tidy;
    }

    /* build data */
    od->data = (unsigned char*)buf;
    od->data_len = strlen((const char*)od->data);

#ifdef FLICKCURL_DEBUG
    fprintf(stderr, "data for signature (%d bytes)\n   %s\n", 
            (int)od->data_len, (char*)od->data);
#endif
    signature_string = flickcurl_oauth_compute_signature(od, &vlen);

    /* set by flickcurl_oauth_build_key() above */
    free(od->key);
    od->key = NULL;

    flickcurl_add_param(fc, "oauth_signature", signature_string);
    fc->count--;
    
    /* Add a new parameter pair */
    values_len[fc->count] = vlen;
    /* 15 = strlen(oauth_signature) */
    fc->param_fields[fc->count] = (char*)malloc(15 + 1);
    if(!fc->param_fields[fc->count])
      goto tidy;

    memcpy(fc->param_fields[fc->count], fc->parameters[fc->count][0], 15 + 1);

    fc->param_values[fc->count] = (char*)malloc(vlen + 1);
    if(!fc->param_values[fc->count])
      goto tidy;

    memcpy(fc->param_values[fc->count], fc->parameters[fc->count][1], vlen + 1);

    full_uri_len += 15 /* "oauth_signature" */ + 1 /* = */ + vlen;
    
    fc->count++;
    
#ifdef FLICKCURL_DEBUG
    fprintf(stderr, "HMAC-SHA1 signature:\n  %s\n", signature_string);
#endif
    
    free(od->data);
    od->data = NULL;
    od->data_len = 0;
    
    flickcurl_end_params(fc);
  }

  /* add &s between fc->parameters */
  full_uri_len += fc->count - 1;

  /* reuse or grow uri buffer */
  if(fc->uri_len < full_uri_len) {
    free(fc->uri);
    fc->uri = (char*)malloc(full_uri_len + 1);
    if(!fc->uri)
      goto tidy;
    fc->uri_len = full_uri_len;
  }
  /* fc_uri_len is strlen(service_uri) at this point */
  memcpy(fc->uri, service_uri, fc_uri_len);

  p = fc->uri + fc_uri_len;
  *p = '\0';

  if(parameters_in_url) {
    *p++ = '?';

    for(i = 0; fc->parameters[i][0]; i++) {
      char *value = (char*)fc->parameters[i][1];
      size_t len;

      if(!fc->parameters[i][1])
        continue;

      len = strlen(fc->parameters[i][0]);
      memcpy(p, fc->parameters[i][0], len);
      p += len;
      *p++ = '=';

      value = curl_escape(value, values_len[i]);
      len = strlen(value);
      memcpy(p, value, len);
      p += len;
      curl_free(value);

      *p++ = '&';
    }

    /* zap last & and terminate fc->url */
    *--p = '\0';
  }

#ifdef FLICKCURL_DEBUG
  fprintf(stderr, "Request URI:\n  %s\n", fc->uri);
  do {
    size_t m_len = strlen(fc->uri);
    if(m_len > full_uri_len) {
      fprintf(stderr, "%s:%d: (%s) assertion failed: Final URI len %zu is larger than buffer %zu\n", __FILE__, __LINE__, __func__, m_len, (size_t)full_uri_len);
      FLICKCURL_ASSERT_DIE
    }
  } while(0);
#endif

  rc = 0;

  tidy:
  if(signature_string)
    free(signature_string);

  if(values_len)
    free(values_len);

  if(free_nonce)
    free(nonce);

  if(timestamp)
    free(timestamp);

  return rc;
}



/**
 * flickcurl_oauth_create_request_token:
 * @fc: flickcurl object
 * @callback: callback URL or NULL for out of band
 *
 * Request an OAuth request token from Flickr for the application API Key/secret
 *
 * Requires the OAuth Client key (API key) and Client secret to have
 * been set with flickcurl_set_oauth_client_key() and
 * flickcurl_set_oauth_client_secret() respectively.
 * 
 * Calls the Flickr OAuth endpoint to get a request token for the
 * given callback or uses out-of-band if @callback is NULL.
 *
 * On success, stores the request token in the @fc structure.
 *
 * Return value: non-0 on failure
 */
int
flickcurl_oauth_create_request_token(flickcurl* fc, const char* callback)
{
  flickcurl_oauth_data* od = &fc->od;
  char* request_token = NULL;
  char* request_token_secret = NULL;
  char** form = NULL;
  int rc = 0;
  const char* uri = fc->oauth_request_token_uri;
  int i;
  int count;

  flickcurl_init_params(fc, 0);

  /* Require signature */
  flickcurl_set_sign(fc);

  if(!callback || !*callback)
    callback = "oob";
  od->callback = callback;

  rc = flickcurl_oauth_prepare_common(fc,
                                      uri,
                                      /* method */ "flickr.oauth.request_token",
                                      /* upload_field */ NULL,
                                      /* upload_value */ NULL,
                                      /* parameters_in_url */ 1,
                                      /* need_auth */ 1);
  od->callback = NULL;

  if(rc)
    goto tidy;

  form = flickcurl_invoke_get_form_content(fc, &count);
  if(!form) {
    rc = 1;
    goto tidy;
  }

#ifdef FLICKCURL_DEBUG
  fprintf(stderr, "OAuth request token request %s response was %d params\n",
          uri, count);
#endif

  for(i = 0; i < count; i++) {
    int offset = 1 + (2 * i);
    if(!strcmp(form[offset], "oauth_token")) {
      request_token = form[offset+1];
    } else if(!strcmp(form[offset], "oauth_token_secret")) {
      request_token_secret = form[offset+1];
    }
  }

  if(request_token && request_token_secret) {
    /* Take copies that are owned by od */
    size_t len = strlen(request_token);
    od->request_token = (char*)malloc(len + 1);
    memcpy(od->request_token, request_token, len + 1);
    od->request_token_len = len;

    len = strlen(request_token_secret);
    od->request_token_secret = (char*)malloc(len + 1);
    memcpy(od->request_token_secret, request_token_secret, len + 1);
    od->request_token_secret_len = len;

#ifdef FLICKCURL_DEBUG
    fprintf(stderr,
            "OAuth request token returned token '%s' secret token '%s'\n",
            od->request_token, od->request_token_secret);
#endif
  } else
    rc = 1;
  
  tidy:
  if(form)
    flickcurl_free_form(form);
  
  return rc;
}


/**
 * flickcurl_oauth_get_authorize_uri:
 * @fc: flickcurl object
 *
 * Get the URL for the user to authorize Flickr OAuth of an application
 *
 * Forms the URL the user needs to start at to authorize the
 * application.
 *
 * This function requires flickcurl_oauth_create_request_token() to have
 * been called to build a request token / secret pair.
 *
 * After this function, the application should pass the verifier to
 * flickcurl_oauth_create_access_token() for the final step in OAuth along
 * with the request token and request token secret.
 *
 * Return value: authorize URI or NULL on failure
 */
char*
flickcurl_oauth_get_authorize_uri(flickcurl* fc)
{
  flickcurl_oauth_data* od = &fc->od;
#define PARAM_LEN 13
  const char* param = "?oauth_token=";
  size_t len;
  char* uri;
  char *p;

  if(!od->request_token)
    return NULL;
  
  len = strlen(flickcurl_flickr_oauth_authorize_uri);
  uri = (char*)malloc(len + PARAM_LEN + od->request_token_len + 1);
  if(!uri)
    return NULL;

  p = uri;
  memcpy(p, flickcurl_flickr_oauth_authorize_uri, len);
  p += len;
  memcpy(p, param, PARAM_LEN);
  p += PARAM_LEN;
  memcpy(p, od->request_token, od->request_token_len);
  p += od->request_token_len;
  *p = '\0';
  
  return uri;
}


/**
 * flickcurl_oauth_create_access_token:
 * @fc: flickcurl object
 * @verifier: verifier from OOB authentication
 *
 * Get a Flickr OAuth access token from request token credentials and verifier
 *
 * Calls the Flickr OAuth access token endpoint using the verifier
 * from out of band authentication to get an access token to enable
 * authenticated calls to the Flickr API.
 *
 * Return value: non-0 on failure
 */
int
flickcurl_oauth_create_access_token(flickcurl* fc, const char* verifier)
{
  flickcurl_oauth_data* od = &fc->od;
  char* access_token = NULL;
  char* access_token_secret = NULL;
  char* username = NULL;
  char* user_nsid = NULL;
  char** form = NULL;
  int rc = 0;
  const char* uri = fc->oauth_access_token_uri;
  int i;
  int count;
  
  if(!verifier)
    return 1;

  flickcurl_init_params(fc, 0);

  /* Require signature */
  flickcurl_set_sign(fc);

  od->verifier = verifier;
  od->verifier_len = strlen(verifier);

  rc = flickcurl_oauth_prepare_common(fc,
                                      uri,
                                      /* method */ "flickr.oauth.access_token",
                                      /* upload_field */ NULL,
                                      /* upload_value */ NULL,
                                      /* parameters_in_url */ 1,
                                      /* need_auth */ 1);

  od->verifier = NULL;
  od->verifier_len = 0;
  if(rc)
    goto tidy;

  form = flickcurl_invoke_get_form_content(fc, &count);
  if(!form) {
    rc = 1;
    goto tidy;
  }

#ifdef FLICKCURL_DEBUG
  fprintf(stderr, "OAuth access token request %s response was %d params\n", 
          uri, count);
#endif

  for(i = 0; i < count; i++) {
    int offset = 1 + (2 * i);
    if(!strcmp(form[offset], "oauth_token")) {
      access_token = form[offset+1];
    } else if(!strcmp(form[offset], "oauth_token_secret")) {
      access_token_secret = form[offset+1];
    } else if(!strcmp(form[offset], "username")) {
      username = form[offset+1];
    } else if(!strcmp(form[offset], "user_nsid")) {
      user_nsid = form[offset+1];
    }
    /* ignoring: fullname */
  }

  if(access_token && access_token_secret) {
    /* Take copies that are owned by od */
    size_t len = strlen(access_token);
    od->token = (char*)malloc(len + 1);
    memcpy(od->token, access_token, len + 1);
    od->token_len = len;

    len = strlen(access_token_secret);
    od->token_secret = (char*)malloc(len + 1);
    memcpy(od->token_secret, access_token_secret, len + 1);
    od->token_secret_len = len;

    if(username) {
      len = strlen(username);
      od->username = (char*)malloc(len + 1);
      memcpy(od->username, username, len + 1);
      od->username_len = len;
    } else {
      od->username = NULL;
      od->username_len = 0;
    }

    if(user_nsid) {
      len = strlen(user_nsid);
      od->user_nsid = (char*)malloc(len + 1);
      memcpy(od->user_nsid, user_nsid, len + 1);
      od->user_nsid_len = len;
    } else {
      od->user_nsid = NULL;
      od->user_nsid_len = 0;
    }
    
    /* Delete temporary request token and secret */
    free(od->request_token);
    od->request_token = NULL;
    od->request_token_len = 0;

    free(od->request_token_secret);
    od->request_token_secret = NULL;
    od->request_token_secret_len = 0;

#ifdef FLICKCURL_DEBUG
    fprintf(stderr, 
            "OAuth access token returned token '%s' secret token '%s'\n",
            od->token, od->token_secret);
#endif
  } else
    rc = 1;
  
  tidy:
  if(form)
    flickcurl_free_form(form);
  
  return rc;
}



/**
 * flickcurl_get_oauth_client_key:
 * @fc: flickcurl object
 *
 * Get OAuth Client Key (aka Consumer key, API Key)
 *
 * See also flickcurl_get_oauth_client_secret()
 *
 * Return value: client key or NULL if none set
 */
const char*
flickcurl_get_oauth_client_key(flickcurl *fc)
{
  return fc->od.client_key;
}


/**
 * flickcurl_get_oauth_client_secret:
 * @fc: flickcurl object
 *
 * Get OAuth Client secret
 *
 * See also flickcurl_get_oauth_client_key()
 *
 * Return value: client secret or NULL if none set
 */
const char*
flickcurl_get_oauth_client_secret(flickcurl *fc)
{
  return fc->od.client_secret;
}


/**
 * flickcurl_set_oauth_client_key:
 * @fc: flickcurl object
 * @client_key: client key (API key)
 *
 * Set OAuth client key (aka API key)
 *
 * See also flickcurl_get_oauth_client_key()
 */
void
flickcurl_set_oauth_client_key(flickcurl *fc, const char* client_key)
{
  if(fc->od.client_key) {
    free(fc->od.client_key);
    fc->od.client_key = NULL;
    fc->od.client_key_len = 0;
  }

  if(client_key) {
    size_t len = strlen(client_key);
    fc->od.client_key = (char*)malloc(len + 1);
    memcpy(fc->od.client_key, client_key, len + 1);
    fc->od.client_key_len = len;
  }
}


/**
 * flickcurl_set_oauth_client_secret:
 * @fc: flickcurl object
 * @client_secret: client key (shared key)
 *
 * Set OAuth client key (aka shared secret)
 *
 * See also flickcurl_set_oauth_client_secret()
 */
void
flickcurl_set_oauth_client_secret(flickcurl *fc, const char* client_secret)
{
  if(fc->od.client_secret) {
    free(fc->od.client_secret);
    fc->od.client_secret = NULL;
    fc->od.client_secret_len = 0;
  }
  
  if(client_secret) {
    size_t len = strlen(client_secret);
    fc->od.client_secret = (char*)malloc(len + 1);
    memcpy(fc->od.client_secret, client_secret, len + 1);
    fc->od.client_secret_len = len;
  }
}


/**
 * flickcurl_get_oauth_token:
 * @fc: flickcurl object
 *
 * Get OAuth Token
 *
 * Return value: auth token or NULL if none set
 */
const char*
flickcurl_get_oauth_token(flickcurl *fc)
{
  return fc->od.token;
}


/**
 * flickcurl_set_oauth_token:
 * @fc: flickcurl object
 * @token: auth token
 *
 * Set OAuth Token
 */
void
flickcurl_set_oauth_token(flickcurl *fc, const char* token)
{
#if FLICKCURL_DEBUG > 1
  fprintf(stderr, "OAuth token: '%s'\n", token);
#endif
  if(fc->od.token) {
    free(fc->od.token);
    fc->od.token = NULL;
    fc->od.token_len = 0;
  }
  if(token) {
    size_t len = strlen(token);
    fc->od.token = (char*)malloc(len + 1);
    memcpy(fc->od.token, token, len + 1);
    fc->od.token_len = len;
  }
}


/**
 * flickcurl_get_oauth_token_secret:
 * @fc: flickcurl object
 *
 * Get OAuth token secret
 *
 * Return value: secret or NULL if none set
 */
const char*
flickcurl_get_oauth_token_secret(flickcurl* fc)
{
  return fc->od.token_secret;
}

/**
 * flickcurl_get_oauth_username:
 * @fc: flickcurl object
 *
 * Get the username for the authenticated user
 *
 * Return value: username or NULL if none set
 */
const char*
flickcurl_get_oauth_username(flickcurl* fc)
{
  return fc->od.username;
}

/**
 * flickcurl_get_oauth_user_nsid:
 * @fc: flickcurl object
 *
 * Get the user_nsid for the authenticated user
 *
 * Return value: user_nsid or NULL if none set
 */
const char*
flickcurl_get_oauth_user_nsid(flickcurl* fc)
{
  return fc->od.user_nsid;
}

/**
 * flickcurl_set_oauth_token_secret:
 * @fc: flickcurl object
 * @secret: shared secret
 *
 * Set OAuth token Secret
 */
void
flickcurl_set_oauth_token_secret(flickcurl* fc, const char *secret)
{
#if FLICKCURL_DEBUG > 1
  fprintf(stderr, "OAuth token secret: '%s'\n", secret);
#endif
  if(fc->od.token_secret) {
    free(fc->od.token_secret);
    fc->od.token_secret = NULL;
    fc->od.token_secret_len = 0;
  }
  
  if(secret) {
    size_t len = strlen(secret);
    fc->od.token_secret = (char*)malloc(len + 1);
    memcpy(fc->od.token_secret, secret, len + 1);
    fc->od.token_secret_len = len;
  }
}


/**
 * flickcurl_get_oauth_request_token:
 * @fc: flickcurl object
 *
 * Get OAuth request token
 *
 * Return value: request token or NULL if none set
 */
const char*
flickcurl_get_oauth_request_token(flickcurl* fc)
{
  return fc->od.request_token;
}


/**
 * flickcurl_get_oauth_request_token_secret:
 * @fc: flickcurl object
 *
 * Get OAuth request token secret
 *
 * Return value: request token secret or NULL if none set
 */
const char*
flickcurl_get_oauth_request_token_secret(flickcurl* fc)
{
  return fc->od.request_token_secret;
}


/**
 * flickcurl_set_oauth_request_token:
 * @fc: flickcurl object
 * @token: request token
 *
 * Set OAuth request token
 *
 * See also flickcurl_get_oauth_request_token()
 */
void
flickcurl_set_oauth_request_token(flickcurl *fc, const char* token)
{
#if FLICKCURL_DEBUG > 1
  fprintf(stderr, "OAuth request token: '%s'\n", token);
#endif
  if(fc->od.request_token) {
    free(fc->od.request_token);
    fc->od.request_token = NULL;
    fc->od.request_token_len = 0;
  }

  if(token) {
    size_t len = strlen(token);
    fc->od.request_token = (char*)malloc(len + 1);
    memcpy(fc->od.request_token, token, len + 1);
    fc->od.request_token_len = len;
  }
}


/**
 * flickcurl_set_oauth_request_token_secret:
 * @fc: flickcurl object
 * @secret: request token secret
 *
 * Set OAuth request token secret credentials
 *
 * See also flickcurl_get_oauth_request_token_secret()
 */
void
flickcurl_set_oauth_request_token_secret(flickcurl *fc, const char* secret)
{
#if FLICKCURL_DEBUG > 1
  fprintf(stderr, "OAuth request token secret: '%s'\n", secret);
#endif
  if(fc->od.request_token_secret) {
    free(fc->od.request_token_secret);
    fc->od.request_token_secret = NULL;
    fc->od.request_token_secret = 0;
  }
  if(secret) {
    size_t len = strlen(secret);
    fc->od.request_token_secret = (char*)malloc(len + 1);
    memcpy(fc->od.request_token_secret, secret, len + 1);
    fc->od.request_token_secret_len = len;
  }
}




#endif


#ifdef STANDALONE
#include <stdio.h>

int main(int argc, char *argv[]);


/* Test KEY fields */
static const char* test_client_secret = "a9567d986a7539fe";
static const char* test_token_secret  = NULL;

/* Test DATA fields */
static const char* test_http_request_method = "GET";
static const char* test_uri_base_string     = "https://www.flickr.com/services/oauth/request_token";
static const char* test_oauth_callback_url  = "http://www.example.com";
static const char* test_oauth_consumer_key  = "653e7a6ecc1d528c516cc8f92cf98611";
static const char* test_oauth_nonce         = "95613465";
static const time_t test_oauth_timestamp     = (time_t)1305586162;

static const char* test_request_parameters  = "oauth_callback=http%3A%2F%2Fwww.example.com&oauth_consumer_key=653e7a6ecc1d528c516cc8f92cf98611&oauth_nonce=95613465&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1305586162&oauth_version=1.0";

/* Expected results */
static const char* expected_key = 
      "a9567d986a7539fe"
      "&";
static const char* expected_data =
      "GET" "&"
      "https%3A%2F%2Fwww.flickr.com%2Fservices%2Foauth%2Frequest_token" "&"
      "oauth_callback%3Dhttp%253A%252F%252Fwww.example.com%26oauth_consumer_key%3D653e7a6ecc1d528c516cc8f92cf98611%26oauth_nonce%3D95613465%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1305586162%26oauth_version%3D1.0";

static const char* expected_signature = "2zL7aYEzEEY0IvEgQjT7IqB518U%3D";

static const char* program;


static void
oauth_init_test_secrets(flickcurl_oauth_data *od)
{
  /* Set up test data */
  od->client_secret = (char*)test_client_secret;
  if(od->client_secret)
    od->client_secret_len = strlen(od->client_secret);

  od->token_secret = (char*)test_token_secret;
  if(od->token_secret)
    od->token_secret_len = strlen(od->token_secret);
}


static int
test_request_token(flickcurl* fc) 
{
  flickcurl_oauth_data* od = &fc->od;
  int rc;
  
  memset(od, '\0', sizeof(*od));

  od->callback = test_oauth_callback_url;
  od->client_key = (char*)test_oauth_consumer_key;
  od->client_key_len = strlen(od->client_key);
  od->nonce = (char*)test_oauth_nonce;
  od->timestamp = test_oauth_timestamp;

  oauth_init_test_secrets(od);

  rc = flickcurl_oauth_create_request_token(fc, NULL);

  memset(od, '\0', sizeof(*od));

  return rc;
}


static int
test_access_token(flickcurl* fc) 
{
  flickcurl_oauth_data* od = &fc->od;
  int rc;
  const char* verifier = "123-456-789";
  
  memset(od, '\0', sizeof(*od));

  od->callback = test_oauth_callback_url;
  od->client_key = (char*)test_oauth_consumer_key;
  od->client_key_len = strlen(od->client_key);
  od->nonce = (char*)test_oauth_nonce;
  od->timestamp = test_oauth_timestamp;
  
  oauth_init_test_secrets(od);

  rc = flickcurl_oauth_create_access_token(fc, verifier);

  memset(od, '\0', sizeof(*od));

  return rc;
}


static int
test_oauth_build_key_data(flickcurl_oauth_data* od,
                          const char* http_request_method,
                          const char* uri_base_string, 
                          const char* request_parameters)
{
  unsigned char *p;
  size_t s_len;
  char *escaped_s = NULL;

  if(flickcurl_oauth_build_key(od))
    return 1;
  
  od->data_len = strlen(http_request_method) +
    1 +
    (strlen(uri_base_string) * 3) + /* PESSIMAL; every char %-escaped */
    1 +
    (strlen(request_parameters) * 3); /* PESSIMAL */
  od->data = malloc(od->data_len + 1); /* for NUL */
  
  if(!od->data)
    return 1;

  /* Prepare data */
  p = od->data;
  s_len = strlen(http_request_method);
  memcpy(p, http_request_method, s_len);
  p += s_len;
  
  *p++ = '&';
  
  escaped_s = curl_escape(uri_base_string, strlen(uri_base_string));
  s_len = strlen(escaped_s);
  memcpy(p, escaped_s, s_len);
  p += s_len;
  curl_free(escaped_s);
  
  *p++ = '&';
  
  escaped_s = curl_escape(request_parameters, strlen(request_parameters));
  s_len = strlen(escaped_s);
  memcpy(p, escaped_s, s_len);
  p += s_len;
  curl_free(escaped_s);
  
  *p = '\0'; /* Not part of HMAC-SHA1 data */
  /* calculate actual data len */
  od->data_len = p - od->data;
  
  return 0;
}


static int
test_signature_calc(flickcurl* fc)
{
  char *s = NULL;
  char *escaped_s = NULL;
  size_t escaped_s_len;
  char* signature;
  flickcurl_oauth_data* od = &fc->od;
  int rc;

  memset(od, '\0', sizeof(*od));
  
  oauth_init_test_secrets(od);
  
  rc = test_oauth_build_key_data(od, test_http_request_method,
                                 test_uri_base_string, 
                                 test_request_parameters);
  
  if(strcmp((const char*)od->key, expected_key)) {
    fprintf(stderr, "%s: FAIL\n" 
                    "  key is (%d bytes)\n    %s\n"
                    "  expected key is\n    %s\n",
            program, (int)od->key_len, od->key, expected_key);
    rc++;
  }

  if(strcmp((const char*)od->data, expected_data)) {
    fprintf(stderr, "%s: FAIL\n"
            "  data is (%d bytes)\n    %s\n"
            "  expected data is\n    %s\n",
            program, (int)od->data_len, od->data, expected_data);
    rc++;
  }
  
  signature = flickcurl_oauth_compute_signature(od, &escaped_s_len);
  
  escaped_s = curl_escape((char*)signature, 0);
  free(signature);
  escaped_s_len = strlen(escaped_s);
  
  if(strcmp(escaped_s, expected_signature)) {
    fprintf(stdout, "%s: FAIL\n"
            "  URI Escaped result (%d bytes):\n    %s\n"
            "  Expected URI escaped result\n    %s\n", 
            program, (int)escaped_s_len, escaped_s, expected_signature);
    rc++;
  }
  
  curl_free(escaped_s);
  
  if(s)
    free(s);
  if(od->key)
    free(od->key);
  if(od->data)
    free(od->data);

  memset(od, '\0', sizeof(*od));

  return rc;
}


static void
my_message_handler(void *user_data, const char *message)
{
  fprintf(stderr, "%s: ERROR: %s\n", program, message);
}


int
main(int argc, char *argv[])
{
  flickcurl *fc = NULL;
  int failures = 0;
  
  program = "flickcurl_oauth_test"; /* No raptor_basename */

  flickcurl_init();

  /* Initialise the Flickcurl library */
  fc = flickcurl_new();
  if(!fc) {
    failures++;
    goto tidy;
  }

  flickcurl_set_error_handler(fc, my_message_handler, NULL);

  if(0) {
    failures += test_request_token(fc);
    failures += test_access_token(fc);
  }
  failures += test_signature_calc(fc);

  tidy:
  if(fc)
    flickcurl_free(fc);

  return failures;
}
#endif